diff options
author | Lanre Adelowo <adelowomailbox@gmail.com> | 2018-09-13 17:34:36 +0100 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-09-13 12:34:36 -0400 |
commit | 2a6d3ba058ef855340ea0092a0e06781d067ad74 (patch) | |
tree | 3f9da2ea007d5ccc8359f1497d296bf8a1f5e9c3 /routers/admin/users.go | |
parent | f98040ad5007a3f1f8a80d2ec82f0333b4c684b7 (diff) | |
download | gitea-2a6d3ba058ef855340ea0092a0e06781d067ad74.tar.gz gitea-2a6d3ba058ef855340ea0092a0e06781d067ad74.zip |
Allow admin toggle forcing a password change for newly created users (#4563)
Diffstat (limited to 'routers/admin/users.go')
-rw-r--r-- | routers/admin/users.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/admin/users.go b/routers/admin/users.go index ae8882ac12..8a99de01c2 100644 --- a/routers/admin/users.go +++ b/routers/admin/users.go @@ -82,7 +82,7 @@ func NewUserPost(ctx *context.Context, form auth.AdminCreateUserForm) { Passwd: form.Password, IsActive: true, LoginType: models.LoginPlain, - MustChangePassword: true, + MustChangePassword: form.MustChangePassword, } if len(form.LoginType) > 0 { |