diff options
author | molotkov-and <molotkov-and@ydb.tech> | 2023-05-05 12:10:05 +0300 |
---|---|---|
committer | molotkov-and <molotkov-and@ydb.tech> | 2023-05-05 12:10:05 +0300 |
commit | 85069d919915e1f46d718faf0289c3f78ac7bb2b (patch) | |
tree | b239226f1baf628d8746a08cb4d3dd1313ace75d | |
parent | 061d36543c8db98aef8bfabb6f1914f2a52eefb7 (diff) | |
download | ydb-85069d919915e1f46d718faf0289c3f78ac7bb2b.tar.gz |
Add default permission for check ydb.tables.select and ydb.schemas.getMetadata
-rw-r--r-- | ydb/core/grpc_services/grpc_request_check_actor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/grpc_request_check_actor.h b/ydb/core/grpc_services/grpc_request_check_actor.h index 8db80367fc0..4f5fb755940 100644 --- a/ydb/core/grpc_services/grpc_request_check_actor.h +++ b/ydb/core/grpc_services/grpc_request_check_actor.h @@ -499,7 +499,9 @@ const TVector<TString>& TGrpcRequestCheckActor<TEvent>::GetPermissions() { static const TVector<TString> permissions = { "ydb.databases.list", "ydb.databases.create", - "ydb.databases.connect" + "ydb.databases.connect", + "ydb.tables.select", + "ydb.schemas.getMetadata" }; return permissions; } |