From 318ba91480d075b7b45b2142a755074f2725913f Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 17 Nov 2021 16:49:08 +0000 Subject: [PATCH] more comments --- user/proto/user.proto | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/user/proto/user.proto b/user/proto/user.proto index a6a7a5c..a363279 100644 --- a/user/proto/user.proto +++ b/user/proto/user.proto @@ -123,12 +123,13 @@ message UpdatePasswordResponse { // Read a session by the session id. In the event it has expired or is not found and error is returned. message ReadSessionRequest { - // The unique session id - string sessionId = 1; + // The unique session id + string sessionId = 1; } message ReadSessionResponse { - Session session = 1; + // the session for the user + Session session = 1; } @@ -150,7 +151,8 @@ message LoginResponse { // Logout a user account message LogoutRequest { - string sessionId = 1; + // the session id for the user to logout + string sessionId = 1; } message LogoutResponse {