diff --git a/docs/admin/settings.md b/docs/admin/settings.md index 9e78648..217146b 100644 --- a/docs/admin/settings.md +++ b/docs/admin/settings.md @@ -11,3 +11,21 @@ InvenTree ships with a lot of dynmaic settings. While [config file settings](../ Change how InvenTree apears to the individual user and configure login and user data. ### Global Settings + +#### Login Settings + +Change how logins, password-forgt, signups are handled. + +| Settings Name | Type | Description | Default | +| --- | --- | --- | --- | +| Enable registration | True/False | Enable self-registration for users on the login-pages | False | +| Enable SSO | True/False | Enable SSO on the login-pages | False | +| Enable password forgot | True/False | Enable password forgot function on the login-pages[^3] | True | +| E-Mail required | True/False | Require user to supply e-mail on signup[^1] | False | +| Mail twice | True/False | On signup ask users twice for their mail | False | +| Password twice | True/False | On signup ask users twice for their password | True | +| Auto-fill SSO users | True/False | Automatically fill out user-details from SSO account-data[^2] | True | + +[^1]: Without a way (e-mail) to contact the user notifications and security features might not work! +[^2]: If this feature is enabled the user is only asked for their username, first- and surname if those values can not be gathered from their SSO profile. This might lead to unwanted usernames bleading over. +[^3]: This will let users reset their passwords on their own. For this feature to work you need to configure E-mail diff --git a/docs/start/config.md b/docs/start/config.md index abab321..21e99b6 100644 --- a/docs/start/config.md +++ b/docs/start/config.md @@ -130,6 +130,9 @@ SSO backends for all wanted providers need to be added to the config file as a l If the selected providers need additional settings they must be added as dicts under the key `social_providers`. The correct settings can be found in the django-allauths [provider documentation](https://django-allauth.readthedocs.io/en/latest/providers.html). +!!! note "You are not done" + SSO still needs credentials for all providers and has to be enabled in the [settings](../admin/settings.md)! + ### Login Options