summaryrefslogtreecommitdiffstats
path: root/routers/admin/users.go
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2019-11-04 21:10:37 +0200
committerGitHub <noreply@github.com>2019-11-04 21:10:37 +0200
commit86a44f6b48cf4e814452a71d97e42e486237a307 (patch)
tree123ced125b46d13e4fddb18b94765ea0ed498e0f /routers/admin/users.go
parent3fb9e3afe36e72f855272eb6c43d47824e414117 (diff)
downloadgitea-86a44f6b48cf4e814452a71d97e42e486237a307.tar.gz
gitea-86a44f6b48cf4e814452a71d97e42e486237a307.zip
Fix new user form for non-local users (#8826)
Diffstat (limited to 'routers/admin/users.go')
-rw-r--r--routers/admin/users.go20
1 files changed, 11 insertions, 9 deletions
diff --git a/routers/admin/users.go b/routers/admin/users.go
index fdc4e0e371..2284f21838 100644
--- a/routers/admin/users.go
+++ b/routers/admin/users.go
@@ -79,12 +79,11 @@ func NewUserPost(ctx *context.Context, form auth.AdminCreateUserForm) {
}
u := &models.User{
- Name: form.UserName,
- Email: form.Email,
- Passwd: form.Password,
- IsActive: true,
- LoginType: models.LoginPlain,
- MustChangePassword: form.MustChangePassword,
+ Name: form.UserName,
+ Email: form.Email,
+ Passwd: form.Password,
+ IsActive: true,
+ LoginType: models.LoginPlain,
}
if len(form.LoginType) > 0 {
@@ -95,9 +94,12 @@ func NewUserPost(ctx *context.Context, form auth.AdminCreateUserForm) {
u.LoginName = form.LoginName
}
}
- if !password.IsComplexEnough(form.Password) {
- ctx.RenderWithErr(ctx.Tr("form.password_complexity"), tplUserNew, &form)
- return
+ if u.LoginType == models.LoginPlain {
+ if !password.IsComplexEnough(form.Password) {
+ ctx.RenderWithErr(ctx.Tr("form.password_complexity"), tplUserNew, &form)
+ return
+ }
+ u.MustChangePassword = form.MustChangePassword
}
if err := models.CreateUser(u); err != nil {
switch {