Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/security/reset_user_password.md')
-rw-r--r--doc/security/reset_user_password.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/security/reset_user_password.md b/doc/security/reset_user_password.md
index 4a59d2f9a21..d79ede70abd 100644
--- a/doc/security/reset_user_password.md
+++ b/doc/security/reset_user_password.md
@@ -1,6 +1,6 @@
---
stage: Govern
-group: Authentication and Authorization
+group: Authentication
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
type: howto
---
@@ -104,6 +104,7 @@ If you know the username, user ID, or email address, you can use the Rails conso
new_password = ::User.random_password
user.password = new_password
user.password_confirmation = new_password
+ user.password_automatically_set = false
```
To set a specific value for the new password:
@@ -112,6 +113,7 @@ If you know the username, user ID, or email address, you can use the Rails conso
new_password = 'examplepassword'
user.password = new_password
user.password_confirmation = new_password
+ user.password_automatically_set = false
```
1. Optional. Notify the user that an administrator changed their password: