Skip to content

Commit 3a17608

Browse files
committed
feat: Distinguish request status
1 parent f3ee22c commit 3a17608

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

proto/decentraland/social_service_v2/social_service.proto

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,13 @@ message GetFriendshipStatusPayload {
117117
}
118118

119119
enum FriendshipStatus {
120-
REQUESTED = 0;
121-
ACCEPTED = 1;
122-
REJECTED = 2;
123-
BLOCKED = 3;
120+
REQUEST_SENT = 0;
121+
REQUEST_RECEIVED = 1;
122+
CANCELED = 2;
123+
ACCEPTED = 3;
124+
REJECTED = 4;
125+
DELETED = 5;
126+
BLOCKED = 6;
124127
}
125128

126129
message GetFriendshipStatusResponse {

0 commit comments

Comments
 (0)