From 35dc71b47a41f18df66ac6e55d2e588a759fab83 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Fri, 30 Nov 2012 09:23:13 -0600 Subject: [PATCH] * VRFS-98; notification created for join_request --- src/client_container.proto | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/client_container.proto b/src/client_container.proto index ed9e149f9..c49390056 100644 --- a/src/client_container.proto +++ b/src/client_container.proto @@ -21,6 +21,7 @@ message ClientMessage { FRIEND_UPDATE = 108; SESSION_INVITATION = 109; USER_LEFT_MUSIC_SESSION = 110; + JOIN_REQUEST = 111; TEST_SESSION_MESSAGE = 200; @@ -55,6 +56,7 @@ message ClientMessage { optional FriendUpdate friend_update = 108; // from server to all friends of user optional SessionInvitation session_invitation = 109; // from server to user optional UserLeftMusicSession user_left_music_session = 110; + optional JoinRequest join_request = 111; // Client-Session messages (to/from) optional TestSessionMessage test_session_message = 200; @@ -141,7 +143,11 @@ message UserLeftMusicSession { optional string username = 3; // meant to be a display name } - +message JoinRequest { + optional string join_request_id = 1; + optional string username = 2; + optional string text = 3; +} // route_to: session // a test message used by ruby-client currently. just gives way to send out to rest of session