mail/data/mail_groups.xml
Данил Воробьев 6e6f15d803 initial commit
2024-05-03 09:40:35 +00:00

26 lines
958 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record id="group_mail_template_editor" model="res.groups">
<field name="name">Mail Template Editor</field>
<field name="category_id" ref="base.module_category_hidden"/>
</record>
<record id="base.group_system" model="res.groups">
<field name="implied_ids" eval="[(4, ref('mail.group_mail_template_editor'))]"/>
</record>
<!-- By default, allow all users to edit mail templates -->
<record id="base.group_user" model="res.groups">
<field name="implied_ids" eval="[(4, ref('mail.group_mail_template_editor'))]"/>
</record>
<!-- Group used for the notification_type field of res.users -->
<record id="group_mail_notification_type_inbox" model="res.groups">
<field name="name">Receive notifications in Odoo</field>
<field name="category_id" ref="base.module_category_hidden"/>
</record>
</data>
</odoo>