Generator Changes at 11/12/2025 11:18:31 PM +03:30
This commit is contained in:
@@ -55,6 +55,12 @@ service UserContract
|
||||
|
||||
};
|
||||
};
|
||||
rpc SetPasswordForUser(SetPasswordForUserRequest) returns (google.protobuf.Empty){
|
||||
option (google.api.http) = {
|
||||
post: "/SetPasswordForUser"
|
||||
body: "*"
|
||||
};
|
||||
};
|
||||
}
|
||||
message CreateNewUserRequest
|
||||
{
|
||||
@@ -174,3 +180,10 @@ message AdminGetJwtTokenResponse
|
||||
{
|
||||
string token = 1;
|
||||
}
|
||||
message SetPasswordForUserRequest
|
||||
{
|
||||
int64 user_id = 1;
|
||||
google.protobuf.StringValue current_password = 2;
|
||||
string new_password = 3;
|
||||
string confirm_password = 4;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user