Browse Source

Adds MustChangePassword to user create/edit API, defaults to true (#6193)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
tags/v1.9.0-dev
John Olheiser 5 years ago
parent
commit
7548037a64
3 changed files with 18 additions and 10 deletions
  1. 2
    2
      Gopkg.lock
  2. 14
    6
      routers/api/v1/admin/user.go
  3. 2
    2
      vendor/code.gitea.io/sdk/gitea/admin_user.go

+ 2
- 2
Gopkg.lock View File

@@ -11,11 +11,11 @@

[[projects]]
branch = "master"
digest = "1:784d7948aaae61b9fe50aa15c69a62fb277268a47ed006748a7e25fa61b841c9"
digest = "1:59b2036a2d4b51fc91018adebd33ec4a893aa2b11af3a606445fe8df5640f514"
name = "code.gitea.io/sdk"
packages = ["gitea"]
pruneopts = "NUT"
revision = "4a15722a627a9cf62a203a066e724e82556b3845"
revision = "9c4f6485997bcff568e30cfe45165018ac5772c1"

[[projects]]
digest = "1:5d72bbcc9c8667b11c3dc3cbe681c5a6f71e5096744c0bf7726ab5c6425d5dc4"

+ 14
- 6
routers/api/v1/admin/user.go View File

@@ -56,12 +56,16 @@ func CreateUser(ctx *context.APIContext, form api.CreateUserOption) {
// "422":
// "$ref": "#/responses/validationError"
u := &models.User{
Name: form.Username,
FullName: form.FullName,
Email: form.Email,
Passwd: form.Password,
IsActive: true,
LoginType: models.LoginPlain,
Name: form.Username,
FullName: form.FullName,
Email: form.Email,
Passwd: form.Password,
MustChangePassword: true,
IsActive: true,
LoginType: models.LoginPlain,
}
if form.MustChangePassword != nil {
u.MustChangePassword = *form.MustChangePassword
}

parseLoginSource(ctx, u, form.SourceID, form.LoginName)
@@ -135,6 +139,10 @@ func EditUser(ctx *context.APIContext, form api.EditUserOption) {
u.HashPassword(form.Password)
}

if form.MustChangePassword != nil {
u.MustChangePassword = *form.MustChangePassword
}

u.LoginName = form.LoginName
u.FullName = form.FullName
u.Email = form.Email

+ 2
- 2
vendor/code.gitea.io/sdk/gitea/admin_user.go View File

@@ -23,7 +23,7 @@ type CreateUserOption struct {
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
// required: true
Password string `json:"password" binding:"Required;MaxSize(255)"`
MustChangePassword bool `json:"must_change_password"`
MustChangePassword *bool `json:"must_change_password"`
SendNotify bool `json:"send_notify"`
}

@@ -46,7 +46,7 @@ type EditUserOption struct {
// swagger:strfmt email
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
Password string `json:"password" binding:"MaxSize(255)"`
MustChangePassword bool `json:"must_change_password"`
MustChangePassword *bool `json:"must_change_password"`
Website string `json:"website" binding:"MaxSize(50)"`
Location string `json:"location" binding:"MaxSize(50)"`
Active *bool `json:"active"`

Loading…
Cancel
Save