__manifest__.py 726 B

1234567891011121314151617181920212223242526
  1. {
  2. 'name': '2FA Invite mail',
  3. 'description': """
  4. 2FA Invite mail
  5. ===============
  6. Allow the users to invite another user to use Two-Factor authentication
  7. by sending an email to the target user. This email redirect them to :
  8. - the users security settings if the user is internal.
  9. - the portal security settings page if the user is not internal.
  10. """,
  11. 'depends': ['auth_totp', 'mail'],
  12. 'category': 'Extra Tools',
  13. 'auto_install': True,
  14. 'data': [
  15. 'data/ir_action_data.xml',
  16. 'data/mail_template_data.xml',
  17. 'views/res_users_views.xml',
  18. ],
  19. 'assets': {
  20. 'web.assets_tests': [
  21. 'auth_totp_mail/static/tests/**/*',
  22. ],
  23. },
  24. 'license': 'LGPL-3',
  25. }