odoo18/addons_extensions/menu_control_center/views/groups.xml

19 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data>
<record id="base.action_res_groups" model="ir.actions.act_window">
<field name="name">Roles</field>
<field name="res_model">res.groups</field>
<field name="domain">[('is_visible_for_master', '=', True)]</field>
<!-- <field name="context">{'search_default_filter_no_share': 1}</field>-->
<!-- <field name="help">A group is a set of functional areas that will be assigned to the user in order to give-->
<!-- them access and rights to specific applications and tasks in the system. You can create custom groups or-->
<!-- edit the ones existing by default in order to customize the view of the menu that users will be able to-->
<!-- see. Whether they can have a read, write, create and delete access right can be managed from here.-->
<!-- </field>-->
</record>
<menuitem action="base.action_res_groups" name="Roles" id="base.menu_action_res_groups" parent="base.menu_users" groups="base.group_user" sequence="3"/>
</data>
</odoo>