From de15c100a9a90a98f3f64f676c79181961594279 Mon Sep 17 00:00:00 2001 From: Agustina Aldasoro Date: Tue, 26 Sep 2023 16:53:56 -0300 Subject: [PATCH] Change service name --- .../friendships_v2/friendships_v2.proto | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/proto/decentraland/social/friendships_v2/friendships_v2.proto b/proto/decentraland/social/friendships_v2/friendships_v2.proto index 669fccee..b32d83c3 100644 --- a/proto/decentraland/social/friendships_v2/friendships_v2.proto +++ b/proto/decentraland/social/friendships_v2/friendships_v2.proto @@ -170,29 +170,10 @@ message SubscribeFriendshipEventsUpdatesResponse { } } -message LoginPayload { - string auth_chain = 1; - string address = 2; - string timestamp = 3; -} - -message WelcomeMessage { -} - -message LoginResponse { - oneof response { - UnauthorizedError unauthorized_error = 1; - WelcomeMessage welcome_message = 2; - } -} - message Empty {} service FriendshipsServiceV2 { - // Login the connection, this message needs to be the first one to send so the conection can be authenticated - rpc Login(LoginPayload) returns (LoginResponse) {} - // Message to set your position rpc PositionHeartbeat(PositionPayload) returns (PositionResponse) {}