You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
979 B
19 lines
979 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo noupdate="1">
|
|
<record id="group_allow_send_message_btn" model="res.groups">
|
|
<field name="name">Allow Send Message</field>
|
|
<field name="category_id" ref="base.module_category_usability"/>
|
|
<field name="comment">Allow user to access to the Send message button in chatter.</field>
|
|
</record>
|
|
<record id="group_allow_log_note_btn" model="res.groups">
|
|
<field name="name">Allow Log Note</field>
|
|
<field name="category_id" ref="base.module_category_usability"/>
|
|
<field name="comment">Allow user to access to the Log note button in chatter.</field>
|
|
</record>
|
|
<!--Record to set default access as True-->
|
|
<record id="base.default_user" model="res.users">
|
|
<field name="groups_id"
|
|
eval="[(4,ref('mail_message_access.group_allow_send_message_btn')),
|
|
(4,ref('mail_message_access.group_allow_log_note_btn'))]"/>
|
|
</record>
|
|
</odoo>
|
|
|