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

setting for sso login

This commit is contained in:
Matthias
2021-09-05 20:20:57 +02:00
parent 34a15ff51f
commit e255f2bf42
3 changed files with 12 additions and 1 deletions

View File

@ -840,6 +840,12 @@ class InvenTreeSetting(BaseInvenTreeSetting):
'default': False,
'validator': bool,
},
'LOGIN_ENABLE_SSO': {
'name': _('Enable SSO'),
'description': _('Enable SSO on the login-pages'),
'default': False,
'validator': bool,
},
}
class Meta: