2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

setting for pwd forgot

This commit is contained in:
Matthias
2021-09-05 19:56:48 +02:00
parent 1146e2abd9
commit fa1ea2f701
5 changed files with 31 additions and 4 deletions

View File

@ -826,6 +826,14 @@ class InvenTreeSetting(BaseInvenTreeSetting):
'default': True,
'validator': bool,
},
# login / SSO
'LOGIN_ENABLE_PWD_FORGOT': {
'name': _('Enable password forgot'),
'description': _('Enable password forgot function on the login-pages'),
'default': True,
'validator': bool,
},
}
class Meta: