We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7c121 commit 27c97bbCopy full SHA for 27c97bb
proto/decentraland/social_service/v2/social_service_v2.proto
@@ -16,6 +16,7 @@ message InvalidRequest {
16
message ProfileNotFound {
17
optional string message = 1;
18
}
19
+
20
// Types
21
message User { string address = 1; }
22
@@ -131,13 +132,15 @@ message FriendshipUpdate {
131
132
message RejectResponse { User user = 1; }
133
message DeleteResponse { User user = 1; }
134
message CancelResponse { User user = 1; }
135
+ message BlockResponse { User user = 1; }
136
137
oneof update {
138
RequestResponse request = 1;
139
AcceptResponse accept = 2;
140
RejectResponse reject = 3;
141
DeleteResponse delete = 4;
142
CancelResponse cancel = 5;
143
+ BlockResponse block = 6;
144
145
146
0 commit comments