more comments

This commit is contained in:
Asim Aslam
2021-11-17 16:49:08 +00:00
parent 28e2965d81
commit 318ba91480

View File

@@ -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. // Read a session by the session id. In the event it has expired or is not found and error is returned.
message ReadSessionRequest { message ReadSessionRequest {
// The unique session id // The unique session id
string sessionId = 1; string sessionId = 1;
} }
message ReadSessionResponse { message ReadSessionResponse {
Session session = 1; // the session for the user
Session session = 1;
} }
@@ -150,7 +151,8 @@ message LoginResponse {
// Logout a user account // Logout a user account
message LogoutRequest { message LogoutRequest {
string sessionId = 1; // the session id for the user to logout
string sessionId = 1;
} }
message LogoutResponse { message LogoutResponse {