aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/password_reset.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/password_reset.go b/api/password_reset.go
index 82aaaef..4b002cd 100644
--- a/api/password_reset.go
+++ b/api/password_reset.go
@@ -42,7 +42,7 @@ func (q PasswordResetQuery) Run() (interface{}, *Error) {
42 } 42 }
43 } 43 }
44 44
45 return "OK", nil 45 return nil, nil
46} 46}
47 47
48type ChangePasswordQuery struct { 48type ChangePasswordQuery struct {
@@ -99,5 +99,5 @@ func (q ChangePasswordQuery) Run() (interface{}, *Error) {
99 return nil, NewInternalError(err) 99 return nil, NewInternalError(err)
100 } 100 }
101 101
102 return "OK", nil 102 return nil, nil
103} 103}