diff options
| author | Brynn Crowley <littlehill723@gmail.com> | 2025-03-06 08:24:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-06 08:24:19 +0000 |
| commit | f4abcb34b757e40467344ffdd7cec9f77f46a227 (patch) | |
| tree | f3cc73da2ebaa978186f6f470d5bd27b279f6a96 /docs/content/configuration/first-factor/introduction.md | |
| parent | 5b52a9d4b18b5a07b1edb7403b6dc90b8d5c628d (diff) | |
feat(web): change password (#7676)
Add the ability for users to change their password from their user settings, without requiring them to use the reset password workflow. User's are required to create a elevated session in order to change their password. Users may not change their password to their current password. The user's current password is required for the password change. Users must follow any established password policies. Administrators are able to turn this feature off.
Closes #3548
Diffstat (limited to 'docs/content/configuration/first-factor/introduction.md')
| -rw-r--r-- | docs/content/configuration/first-factor/introduction.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/content/configuration/first-factor/introduction.md b/docs/content/configuration/first-factor/introduction.md index f911531c9..b9dc7730f 100644 --- a/docs/content/configuration/first-factor/introduction.md +++ b/docs/content/configuration/first-factor/introduction.md @@ -34,6 +34,8 @@ authentication_backend: password_reset: disable: false custom_url: '' + password_change: + disable: false ``` ## Options @@ -71,6 +73,15 @@ This setting controls if users can reset their password from the web frontend or The custom password reset URL. This replaces the inbuilt password reset functionality and disables the endpoints if this is configured to anything other than nothing or an empty string. +### password_change + +#### disable + +{{< confkey type="boolean" default="false" required="no" >}} + +This setting controls if users can change their password from the web frontend or not. + + ### file The [file](file.md) authentication provider. |
