2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-03 20:20:58 +00:00

settings for auto-fill on sso

This commit is contained in:
Matthias
2021-09-07 01:19:44 +02:00
parent e380f94e01
commit 1f03d43b92
4 changed files with 27 additions and 1 deletions

View File

@ -852,6 +852,12 @@ class InvenTreeSetting(BaseInvenTreeSetting):
'default': False,
'validator': bool,
},
'LOGIN_SIGNUP_SSO_AUTO': {
'name': _('Auto-fill SSO users'),
'description': _('Automatically fill out user-details from SSO account-data'),
'default': True,
'validator': bool,
},
}
class Meta: