From 697b2177f0e14074dcc58b17149ef9cf7ad06aa1 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Thu, 14 May 2026 19:13:04 +0200 Subject: [PATCH] Add a method to recieve a JWT with a cli token Signed-off-by: Nikolai Rodionov --- proto/tokens/v1/tokens_v1.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/tokens/v1/tokens_v1.proto b/proto/tokens/v1/tokens_v1.proto index 22db646..8becfb2 100644 --- a/proto/tokens/v1/tokens_v1.proto +++ b/proto/tokens/v1/tokens_v1.proto @@ -22,6 +22,8 @@ service TokensService { rpc ListTokens (google.protobuf.Empty) returns (stream ListTokensResponse) {} // List all available permissions rpc ListPermissions (google.protobuf.Empty) returns (stream ListPermissionsResponse) {} + // Recieve a JWT access token + rcp AuthenticateWithToken(google.protobuf.Empty) returns (google.protobuf.Empty) {} } message TokenMetadata {