-
- Downloads
[ADD] auth_totp
New module for supporting two-factor authentication via time-base
one-time-password (TOTP).
Users (including portal users) can choose to enable two-factor auth in
their user account settings, by scanning a QR code and adding it to an
authenticator app, such as Google Auth, 1Password, etc.
When two-factor is enabled, password-based non-interactive RPC is only
possible by using API keys.
Co-authored-by:
Olivier Dony <odo@odoo.com>
Showing
- addons/auth_totp/__init__.py 3 additions, 0 deletionsaddons/auth_totp/__init__.py
- addons/auth_totp/__manifest__.py 25 additions, 0 deletionsaddons/auth_totp/__manifest__.py
- addons/auth_totp/controllers/__init__.py 2 additions, 0 deletionsaddons/auth_totp/controllers/__init__.py
- addons/auth_totp/controllers/home.py 38 additions, 0 deletionsaddons/auth_totp/controllers/home.py
- addons/auth_totp/models/__init__.py 3 additions, 0 deletionsaddons/auth_totp/models/__init__.py
- addons/auth_totp/models/ir_http.py 13 additions, 0 deletionsaddons/auth_totp/models/ir_http.py
- addons/auth_totp/models/res_users.py 197 additions, 0 deletionsaddons/auth_totp/models/res_users.py
- addons/auth_totp/security/security.xml 16 additions, 0 deletionsaddons/auth_totp/security/security.xml
- addons/auth_totp/static/tests/totp_flow.js 249 additions, 0 deletionsaddons/auth_totp/static/tests/totp_flow.js
- addons/auth_totp/tests/__init__.py 1 addition, 0 deletionsaddons/auth_totp/tests/__init__.py
- addons/auth_totp/tests/test_totp.py 57 additions, 0 deletionsaddons/auth_totp/tests/test_totp.py
- addons/auth_totp/views/templates.xml 38 additions, 0 deletionsaddons/auth_totp/views/templates.xml
- addons/auth_totp/views/user_preferences.xml 108 additions, 0 deletionsaddons/auth_totp/views/user_preferences.xml
- addons/auth_totp_portal/__init__.py 1 addition, 0 deletionsaddons/auth_totp_portal/__init__.py
- addons/auth_totp_portal/__manifest__.py 10 additions, 0 deletionsaddons/auth_totp_portal/__manifest__.py
- addons/auth_totp_portal/security/security.xml 16 additions, 0 deletionsaddons/auth_totp_portal/security/security.xml
- addons/auth_totp_portal/static/src/js/totp_frontend.js 226 additions, 0 deletionsaddons/auth_totp_portal/static/src/js/totp_frontend.js
- addons/auth_totp_portal/static/tests/totp_portal.js 124 additions, 0 deletionsaddons/auth_totp_portal/static/tests/totp_portal.js
- addons/auth_totp_portal/tests/__init__.py 1 addition, 0 deletionsaddons/auth_totp_portal/tests/__init__.py
- addons/auth_totp_portal/tests/test_tour.py 44 additions, 0 deletionsaddons/auth_totp_portal/tests/test_tour.py
addons/auth_totp/__init__.py
0 → 100644
addons/auth_totp/__manifest__.py
0 → 100644
addons/auth_totp/controllers/__init__.py
0 → 100644
addons/auth_totp/controllers/home.py
0 → 100644
addons/auth_totp/models/__init__.py
0 → 100644
addons/auth_totp/models/ir_http.py
0 → 100644
addons/auth_totp/models/res_users.py
0 → 100644
addons/auth_totp/security/security.xml
0 → 100644
addons/auth_totp/static/tests/totp_flow.js
0 → 100644
addons/auth_totp/tests/__init__.py
0 → 100644
addons/auth_totp/tests/test_totp.py
0 → 100644
addons/auth_totp/views/templates.xml
0 → 100644
addons/auth_totp/views/user_preferences.xml
0 → 100644
addons/auth_totp_portal/__init__.py
0 → 100644
addons/auth_totp_portal/__manifest__.py
0 → 100644
addons/auth_totp_portal/tests/__init__.py
0 → 100644
addons/auth_totp_portal/tests/test_tour.py
0 → 100644
Please register or sign in to comment