diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-04-15 01:22:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-14 17:22:14 +0000 |
commit | 4c6e2da088cf092a9790df5c84b7b338508fede7 (patch) | |
tree | 7552e449d209d2daf24bbd4905abaa6ed9e7e6ed /docs/content | |
parent | e20428d8f64697d7c6418b42d0a8e57d1d3f588c (diff) | |
download | gitea-4c6e2da088cf092a9790df5c84b7b338508fede7.tar.gz gitea-4c6e2da088cf092a9790df5c84b7b338508fede7.zip |
Improve "must-change-password" logic and document (#30472)
Unify the behaviors of "user create" and "user change-password".
Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
Diffstat (limited to 'docs/content')
-rw-r--r-- | docs/content/administration/command-line.en-us.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/content/administration/command-line.en-us.md b/docs/content/administration/command-line.en-us.md index 5049df35e0..752a8d4c6f 100644 --- a/docs/content/administration/command-line.en-us.md +++ b/docs/content/administration/command-line.en-us.md @@ -83,8 +83,7 @@ Admin operations: - `--email value`: Email. Required. - `--admin`: If provided, this makes the user an admin. Optional. - `--access-token`: If provided, an access token will be created for the user. Optional. (default: false). - - `--must-change-password`: If provided, the created user will be required to choose a newer password after the - initial login. Optional. (default: true). + - `--must-change-password`: The created user will be required to set a new password after the initial login, default: true. It could be disabled by `--must-change-password=false`. - `--random-password`: If provided, a randomly generated password will be used as the password of the created user. The value of `--password` will be discarded. Optional. - `--random-password-length`: If provided, it will be used to configure the length of the randomly generated @@ -95,7 +94,7 @@ Admin operations: - Options: - `--username value`, `-u value`: Username. Required. - `--password value`, `-p value`: New password. Required. - - `--must-change-password`: If provided, the user is required to choose a new password after the login. Optional. + - `--must-change-password`: The user is required to set a new password after the login, default: true. It could be disabled by `--must-change-password=false`. - Examples: - `gitea admin user change-password --username myname --password asecurepassword` - `must-change-password`: |