update Change password
This commit is contained in:
parent
4264ef71f1
commit
54c9a2cc07
|
@ -295,6 +295,7 @@ func ChangeUserPassword(userID string, opt model.ChangePasswordOptions) error {
|
|||
if err = updateOneByCondition(ctx, bson.M{"_id": user.ID}, bson.M{
|
||||
"$set": bson.M{
|
||||
"hashedPassword": internal.HashPassword(opt.NewPassword),
|
||||
"requireToChangePassword": false,
|
||||
"updatedAt": internal.Now(),
|
||||
},
|
||||
}); err != nil {
|
||||
|
|
Loading…
Reference in New Issue