We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07ccb6 commit 9cf4acfCopy full SHA for 9cf4acf
proto/decentraland/social_service/v2/social_service_v2.proto
@@ -155,6 +155,10 @@ message GetFriendshipStatusResponse {
155
}
156
157
158
+message GetOnlineFriendsResponse {
159
+ repeated FriendProfile friends = 1;
160
+}
161
+
162
service SocialService {
163
// Get the list of friends for the authenticated user
164
rpc GetFriends(GetFriendsPayload) returns (PaginatedFriendsProfilesResponse) {}
@@ -182,4 +186,7 @@ service SocialService {
182
186
// Subscribe to connectivity updates of friends: ONLINE, OFFLINE, AWAY
183
187
rpc SubscribeToFriendConnectivityUpdates(google.protobuf.Empty)
184
188
returns (stream FriendConnectivityUpdate) {}
189
190
+ // Get the list of online friends
191
+ rpc GetOnlineFriends(google.protobuf.Empty) returns (GetOnlineFriendsResponse) {}
185
192
0 commit comments