File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
proto/decentraland/social_service/v2 Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,10 @@ message GetFriendshipStatusResponse {
155
155
}
156
156
}
157
157
158
+ message GetOnlineFriendsResponse {
159
+ repeated FriendProfile friends = 1 ;
160
+ }
161
+
158
162
service SocialService {
159
163
// Get the list of friends for the authenticated user
160
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
}
You can’t perform that action at this time.
0 commit comments