add requres pin
All checks were successful
Publish / Publish Job (push) Successful in 2m35s

This commit is contained in:
Дмитрий
2026-04-02 13:31:35 +03:00
parent bd7fb33d1e
commit 76ded73e40
2 changed files with 7 additions and 6 deletions

View File

@@ -65,12 +65,13 @@ message VerifyTokenRequest {
message VerifyTokenResponse {
bool is_valid = 1;
string error_message = 2;
string id = 3;
string username = 4;
int32 role_level = 5;
optional string error_message = 2;
optional string id = 3;
optional string username = 4;
optional int32 role_level = 5;
repeated string permissions = 6;
string session_id = 7;
optional string session_id = 7;
optional bool requires_pin = 8;
}
message GetAccountRoleLevelRequest {