accountService.changePassword() requires old and new password

This commit is contained in:
woodser 2023-02-21 10:54:59 -05:00
parent 86511b4e21
commit 55650c495b
4 changed files with 13 additions and 9 deletions

View file

@ -119,7 +119,8 @@ message IsAppInitializedReply {
}
message ChangePasswordRequest {
string password = 1;
string old_password = 1;
string new_password = 2;
}
message ChangePasswordReply {