Skip to content

Commit

Permalink
refactor: Get F Status response
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Jan 15, 2025
1 parent b9673b0 commit f3ee22c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion proto/decentraland/social_service_v2/social_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ message UpsertFriendshipResponse {
message Accepted {
string id = 1;
int64 created_at = 2;
int64 updated_at = 3;
}
oneof response {
Accepted accepted = 1;
Expand Down Expand Up @@ -125,8 +124,14 @@ enum FriendshipStatus {
}

message GetFriendshipStatusResponse {
message Ok {
FriendshipStatus status = 1;
optional string message = 2;
}
oneof response {
Ok accepted = 1;
InternalServerError internal_server_error = 2;
}
}

service SocialService {
Expand Down

0 comments on commit f3ee22c

Please sign in to comment.