diff options
author | Aleksandr Gaev <aleksandr.gaev@nebius.com> | 2024-03-21 19:02:36 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-03-21 19:14:16 +0300 |
commit | aa70be1f69ca5d9eaf6380a95f0d79c30f6ec691 (patch) | |
tree | 50b37e2c1f812c1d45cd9c81a51710e718cc7bf7 | |
parent | a3786143c42fa67f7f22e8258d17985ca35b13de (diff) | |
download | ydb-aa70be1f69ca5d9eaf6380a95f0d79c30f6ec691.tar.gz |
Add admins builtin group
Issue: #364
---
cfad47c9defcd3398e481fcd4b3723224c9b1b0e
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/365
-rw-r--r-- | yt/yt/client/security_client/public.cpp | 1 | ||||
-rw-r--r-- | yt/yt/client/security_client/public.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/yt/yt/client/security_client/public.cpp b/yt/yt/client/security_client/public.cpp index 08fecc7570..842fecf370 100644 --- a/yt/yt/client/security_client/public.cpp +++ b/yt/yt/client/security_client/public.cpp @@ -31,6 +31,7 @@ const TString TabletBalancerUserName("tablet_balancer"); const TString EveryoneGroupName("everyone"); const TString UsersGroupName("users"); const TString SuperusersGroupName("superusers"); +const TString AdminsGroupName("admins"); //////////////////////////////////////////////////////////////////////////////// diff --git a/yt/yt/client/security_client/public.h b/yt/yt/client/security_client/public.h index 43e86b1ef3..285b24b3f3 100644 --- a/yt/yt/client/security_client/public.h +++ b/yt/yt/client/security_client/public.h @@ -42,6 +42,7 @@ extern const TString TabletBalancerUserName; extern const TString EveryoneGroupName; extern const TString UsersGroupName; extern const TString SuperusersGroupName; +extern const TString AdminsGroupName; extern const TString ReplicatorUserName; extern const TString OwnerUserName; |