Skip to content

Commit 27c97bb

Browse files
committed
feat: Add Block update to FriendshipUpdate message type
1 parent bc7c121 commit 27c97bb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

proto/decentraland/social_service/v2/social_service_v2.proto

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ message InvalidRequest {
1616
message ProfileNotFound {
1717
optional string message = 1;
1818
}
19+
1920
// Types
2021
message User { string address = 1; }
2122

@@ -131,13 +132,15 @@ message FriendshipUpdate {
131132
message RejectResponse { User user = 1; }
132133
message DeleteResponse { User user = 1; }
133134
message CancelResponse { User user = 1; }
135+
message BlockResponse { User user = 1; }
134136

135137
oneof update {
136138
RequestResponse request = 1;
137139
AcceptResponse accept = 2;
138140
RejectResponse reject = 3;
139141
DeleteResponse delete = 4;
140142
CancelResponse cancel = 5;
143+
BlockResponse block = 6;
141144
}
142145
}
143146

0 commit comments

Comments
 (0)