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.

31 lines
1.4 KiB

7 years ago
7 years ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
  3. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
  4. <odoo>
  5. <data noupdate="0">
  6. <record model="ir.module.category" id="module_category_data_protection">
  7. <field name="name">Data Protection</field>
  8. <field name="sequence">30</field>
  9. </record>
  10. <record id="group_data_protection_user" model="res.groups">
  11. <field name="name">Data Protection User</field>
  12. <field name="implied_ids" eval="[(4, ref('base.group_user'))]" />
  13. <field name="category_id" ref="module_category_data_protection" />
  14. </record>
  15. <record id="group_data_protection_manager" model="res.groups">
  16. <field name="name">Data Protection Manager</field>
  17. <field
  18. name="implied_ids"
  19. eval="[(4, ref('privacy.group_data_protection_user'))]"
  20. />
  21. <field name="category_id" ref="module_category_data_protection" />
  22. <field name="users" eval="[(4, ref('base.user_root'))]" />
  23. </record>
  24. <record id="base.user_root" model="res.users">
  25. <field
  26. name="groups_id"
  27. eval="[(4, ref('group_data_protection_manager'))]"
  28. />
  29. </record>
  30. </data>
  31. </odoo>