summaryrefslogtreecommitdiff
path: root/gitlab/const.py
diff options
context:
space:
mode:
authorNazia Povey <Hnasar@users.noreply.github.com>2022-05-07 11:37:48 -0700
committerJohn Villalovos <john@sodarock.com>2022-05-07 11:49:31 -0700
commit3e0d4d9006e2ca6effae2b01cef3926dd0850e52 (patch)
tree79e7b3edbbcaf7a59667a061ce1fe059a41a2ad2 /gitlab/const.py
parentd169983abbc6094bcddac14a377b4196bc1fac4e (diff)
downloadgitlab-3e0d4d9006e2ca6effae2b01cef3926dd0850e52.tar.gz
docs: add missing Admin access const value
As shown here, Admin access is set to 60: https://docs.gitlab.com/ee/api/protected_branches.html#protected-branches-api
Diffstat (limited to 'gitlab/const.py')
-rw-r--r--gitlab/const.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/const.py b/gitlab/const.py
index 2ed4fa7..0d35045 100644
--- a/gitlab/const.py
+++ b/gitlab/const.py
@@ -61,6 +61,7 @@ REPORTER_ACCESS: int = 20
DEVELOPER_ACCESS: int = 30
MAINTAINER_ACCESS: int = 40
OWNER_ACCESS: int = 50
+ADMIN_ACCESS: int = 60
VISIBILITY_PRIVATE: str = "private"
VISIBILITY_INTERNAL: str = "internal"