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.

18 lines
643 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2016-2017 LasLabs Inc.
  4. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
  5. -->
  6. <odoo>
  7. <record id="auth_access_owners_only" model="ir.rule">
  8. <field name="name">MFA Authenticators - Owner Only</field>
  9. <field name="model_id" ref="model_res_users_authenticator"/>
  10. <field name="domain_force">[('user_id', '=?', user.id)]</field>
  11. <field name="perm_read" eval="True"/>
  12. <field name="perm_write" eval="True"/>
  13. <field name="perm_create" eval="True"/>
  14. <field name="perm_unlink" eval="True"/>
  15. </record>
  16. </odoo>