ebanuy mileardnuy commit
All checks were successful
Publish / Publish Job (push) Successful in 2m20s

This commit is contained in:
Дмитрий
2026-04-11 20:02:38 +03:00
parent d6b4158650
commit 8146b671dd
3 changed files with 15 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ service UsersService {
rpc UpdateProfile (UpdateProfileRequest) returns (UpdateProfileResponse);
// Для системного использования (вызывается из Auth/Admin)
rpc CreateProfile (CreateProfileRequest) returns (CreateProfileResponse);
rpc SoftDeleteProfile(SoftDeleteProfileRequest) returns (SoftDeleteProfileResponse);
}
message GetProfileRequest {
@@ -57,4 +58,12 @@ message CreateProfileRequest {
message CreateProfileResponse {
bool success = 1;
}
message SoftDeleteProfileRequest {
string user_id = 1;
}
message SoftDeleteProfileResponse {
bool success = 1;
}