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.
14 lines
780 B
14 lines
780 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Module category for the security groups of this module -->
|
|
<record id="ir_module_category_remove_studio_field" model="ir.module.category">
|
|
<field name="name">Remove Studio Fields</field>
|
|
<field name="description">Helps to manage access to the wizard for removing fields added through Studio</field>
|
|
</record>
|
|
<!-- Security group to use the Remove Custom Fields wizard -->
|
|
<record id="remove_studio_field_group_admin" model="res.groups">
|
|
<field name="name">Administrator</field>
|
|
<field name="comment">Access to the Remove Studio Fields wizard menu</field>
|
|
<field name="category_id" ref="remove_studio_field.ir_module_category_remove_studio_field"/>
|
|
</record>
|
|
</odoo>
|