add refresh-password route

This commit is contained in:
2026-06-30 21:06:51 +07:00
parent 4d9b73cb34
commit d22ad7cb09
9 changed files with 366 additions and 28 deletions
+15
View File
@@ -24,6 +24,13 @@ service EveningDetectiveServer {
body: "*"
};
}
rpc RefreshPassword(RefreshPasswordReq) returns (RefreshPasswordRsp) {
option (google.api.http) = {
post: "/api/refresh-password"
body: "*"
};
}
}
message PingReq {}
@@ -46,3 +53,11 @@ message SignupReq {
message SignupRsp {
string error = 1;
}
message RefreshPasswordReq {
string email = 1;
}
message RefreshPasswordRsp {
string error = 1;
}