diff options
Diffstat (limited to 'internal/api/client/user/passwordchange.go')
-rw-r--r-- | internal/api/client/user/passwordchange.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/user/passwordchange.go b/internal/api/client/user/passwordchange.go index c2b5c598d..f0cfe3dd6 100644 --- a/internal/api/client/user/passwordchange.go +++ b/internal/api/client/user/passwordchange.go @@ -95,7 +95,7 @@ func (m *Module) PasswordChangePOSTHandler(c *gin.Context) { return } - if errWithCode := m.processor.UserChangePassword(c.Request.Context(), authed, form); errWithCode != nil { + if errWithCode := m.processor.User().PasswordChange(c.Request.Context(), authed.User, form.OldPassword, form.NewPassword); errWithCode != nil { apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) return } |