feat: ResetPassword endpoint

This commit is contained in:
Stefan Benz
2024-09-24 20:42:20 +02:00
parent 04f5ed8d1c
commit 50e0c758de
17 changed files with 1275 additions and 89 deletions

View File

@@ -1540,6 +1540,16 @@ message RemoveUsernameRequest {
example: "\"69629026806489455\"";
}
];
// unique identifier of the username.
string username_id = 4 [
(validate.rules).string = {min_len: 1, max_len: 200},
(google.api.field_behavior) = REQUIRED,
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
min_length: 1,
max_length: 200,
example: "\"69629023906488334\"";
}
];
}
message RemoveUsernameResponse {