diff options
author | hcpp <hcpp@ydb.tech> | 2023-02-08 16:24:17 +0300 |
---|---|---|
committer | hcpp <hcpp@ydb.tech> | 2023-02-08 16:24:17 +0300 |
commit | a06511c93899d3abfd82c501c63d704d88f61957 (patch) | |
tree | 79541e312da3630a3415bfbcfb767264622dc3a9 | |
parent | 7743989af1af787482ad057ebd11dc1772a52acd (diff) | |
download | ydb-a06511c93899d3abfd82c501c63d704d88f61957.tar.gz |
job permissions has been fixed
-rw-r--r-- | ydb/core/grpc_services/rpc_yq.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/rpc_yq.cpp b/ydb/core/grpc_services/rpc_yq.cpp index 6fcd044503..6cafa7ed27 100644 --- a/ydb/core/grpc_services/rpc_yq.cpp +++ b/ydb/core/grpc_services/rpc_yq.cpp @@ -497,7 +497,9 @@ std::unique_ptr<TEvProxyRuntimeEvent> CreateDescribeJobRequestOperationCall(TInt return { NPerms::Required("yq.jobs.get"), NPerms::Optional("yq.resources.viewPublic"), - NPerms::Optional("yq.resources.viewPrivate") + NPerms::Optional("yq.resources.viewPrivate"), + NPerms::Optional("yq.queries.viewAst"), + NPerms::Optional("yq.queries.viewQueryText") }; } }; |