From 9a404e5f0922fc82ef0a7006354aeae5fcbcf184 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sat, 9 May 2026 15:25:51 +0200 Subject: [PATCH] Better comment Signed-off-by: Nikolai Rodionov --- proto/accounts/v1/accounts_v1.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proto/accounts/v1/accounts_v1.proto b/proto/accounts/v1/accounts_v1.proto index 1d38bdb..3b74389 100644 --- a/proto/accounts/v1/accounts_v1.proto +++ b/proto/accounts/v1/accounts_v1.proto @@ -12,7 +12,8 @@ service AccountsNoAuthService { rpc SignIn (SignInRequest) returns (google.protobuf.Empty) {} // Create a new account rpc SignUp (SignUpRequest) returns (google.protobuf.Empty) {} - // RefreshToken doesn't use regular auth methods + // RefreshToken doesn't use regular auth methods, it recieves the token in data, + // checks whether a session with this token exists and create a new one if yes rpc RefreshToken (RefreshTokenRequest) returns (google.protobuf.Empty) {} }