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.
15 lines
777 B
15 lines
777 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Module category for the module to add the security groups -->
|
|
<record id="module_category_send_sms" model="ir.module.category" >
|
|
<field name="name">Multiple SMS Gateway Integration</field>
|
|
<field name="description">Manage user access for Multiple SMS Gateway Integration module</field>
|
|
<field name="sequence">20</field>
|
|
</record>
|
|
<!-- To create a manager security group -->
|
|
<record id="multi_sms_gateway_group_manager" model="res.groups">
|
|
<field name="name">Manager</field>
|
|
<field name="category_id" ref="module_category_send_sms"/>
|
|
<field name="comment">Access to the new menus and records of Multiple SMS Gateway Integration</field>
|
|
</record>
|
|
</odoo>
|
|
|