ommit check old passwd if password is empty
This commit is contained in:
@@ -247,10 +247,14 @@ func (ct *User) ChangeCurPwd(c *gin.Context) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
u := service.AllService.UserService.CurUser(c)
|
u := service.AllService.UserService.CurUser(c)
|
||||||
oldPwd := service.AllService.UserService.EncryptPassword(f.OldPassword)
|
// If the password is not empty, the old password is verified
|
||||||
if u.Password != oldPwd {
|
// otherwise, the old password is not verified
|
||||||
response.Fail(c, 101, response.TranslateMsg(c, "OldPasswordError"))
|
if !service.AllService.UserService.IsPasswordEmptyByUser(u) {
|
||||||
return
|
oldPwd := service.AllService.UserService.EncryptPassword(f.OldPassword)
|
||||||
|
if u.Password != oldPwd {
|
||||||
|
response.Fail(c, 101, response.TranslateMsg(c, "OldPasswordError"))
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
err := service.AllService.UserService.UpdatePassword(u, f.NewPassword)
|
err := service.AllService.UserService.UpdatePassword(u, f.NewPassword)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Reference in New Issue
Block a user