- add: session_id to the validate token response

- add: session_id to the jwt generated token
This commit is contained in:
2024-12-20 17:46:04 -05:00
parent e0114fd832
commit 9d9e2bef05
4 changed files with 19 additions and 12 deletions

View File

@@ -35,6 +35,7 @@ message ValidateTokenRequest {
message ValidateTokenResponse {
bool valid = 1;
string user_id = 2;
string session_id = 3;
}
message ValidateSessionRequest {