auth_totp_mail_enforce/__manifest__.py

21 lines
625 B
Python

{
'name': '2FA by mail',
'description': """
2FA by mail
===============
Two-Factor authentication by sending a code to the user email inbox
when the 2FA using an authenticator app is not configured.
To enforce users to use a two-factor authentication by default,
and encourage users to configure their 2FA using an authenticator app.
""",
'depends': ['auth_totp', 'mail'],
'category': 'Extra Tools',
'data': [
'data/mail_template_data.xml',
'security/ir.model.access.csv',
'views/res_config_settings_views.xml',
'views/templates.xml',
],
'license': 'LGPL-3',
}