[FIX] tutorials: fix outdated group creation instructions

The instructions were updated to take the new `res.groups.privilege` model into account.

closes odoo/documentation#16489

X-original-commit: fe21491ab8
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
ltinel
2026-02-20 11:02:41 +00:00
committed by GitHub
parent 93ef6e117e
commit 70ba5ea18e

View File

@@ -87,11 +87,14 @@ As simple example `can be found here <https://github.com/odoo/odoo/blob/532c083c
#. If not already, add a ``'category'`` field to your ``__manifest__.py`` with value ``Real Estate/Brokerage``.
#. Add a record creating a group with the id ``estate_group_user``, the name "Agent"
#. Add a record creating a group privilege with the id ``groups_privilege_real_estate``, the name "Real Estate"
and the category ``base.module_category_real_estate_brokerage``.
#. Add a record creating a group with the id ``estate_group_user``, the name "Agent"
and the group privilege ``groups_privilege_real_estate``.
#. Below that, add a record creating a group with the id ``estate_group_manager``,
the name "Manager" and the category ``base.module_category_real_estate_brokerage``.
the name "Manager" and the group privilege ``groups_privilege_real_estate``.
The ``estate_group_manager`` group needs to imply ``estate_group_user``.
.. note::