core: disallow username and email changes by default (#5571)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
eb071d4d90
commit
3704f4ccf4
|
@ -77,8 +77,8 @@ geoip: "/geoip/GeoLite2-City.mmdb"
|
|||
footer_links: []
|
||||
|
||||
default_user_change_name: true
|
||||
default_user_change_email: true
|
||||
default_user_change_username: true
|
||||
default_user_change_email: false
|
||||
default_user_change_username: false
|
||||
|
||||
gdpr_compliance: true
|
||||
cert_discovery_dir: /certs
|
||||
|
|
|
@ -214,7 +214,7 @@ Enable the ability for users to change their name, defaults to `true`.
|
|||
Requires authentik 2021.12.1
|
||||
:::
|
||||
|
||||
Enable the ability for users to change their Email address, defaults to `true`.
|
||||
Enable the ability for users to change their Email address, defaults to `false`.
|
||||
|
||||
### `AUTHENTIK_DEFAULT_USER_CHANGE_USERNAME`
|
||||
|
||||
|
@ -222,7 +222,7 @@ Enable the ability for users to change their Email address, defaults to `true`.
|
|||
Requires authentik 2021.12.1
|
||||
:::
|
||||
|
||||
Enable the ability for users to change their Usernames, defaults to `true`.
|
||||
Enable the ability for users to change their Usernames, defaults to `false`.
|
||||
|
||||
### `AUTHENTIK_GDPR_COMPLIANCE`
|
||||
|
||||
|
|
Reference in a new issue