diff options
author | Max Wittig <max.wittig95@gmail.com> | 2018-10-06 16:50:27 +0200 |
---|---|---|
committer | Max Wittig <max.wittig95@gmail.com> | 2018-10-06 16:53:23 +0200 |
commit | c38775a5d52620a9c2d506d7b0952ea7ef0a11fc (patch) | |
tree | 40573b0dd18cb11ff6a8e1cf5e49571f342242a4 /gitlab/const.py | |
parent | 32b5122d14d32c06c7db3a2923fe56a6331562e5 (diff) | |
download | gitlab-refactor/rename-variable.tar.gz |
refactor: rename MASTER_ACCESSrefactor/rename-variable
to MAINTAINER_ACCESS to follow GitLab 11.0 docs
See:
https://docs.gitlab.com/ce/user/permissions.html#project-members-permissions
Diffstat (limited to 'gitlab/const.py')
-rw-r--r-- | gitlab/const.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/const.py b/gitlab/const.py index e4766d5..62f2403 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -18,7 +18,8 @@ GUEST_ACCESS = 10 REPORTER_ACCESS = 20 DEVELOPER_ACCESS = 30 -MASTER_ACCESS = 40 +MAINTAINER_ACCESS = 40 +MASTER_ACCESS = MAINTAINER_ACCESS OWNER_ACCESS = 50 VISIBILITY_PRIVATE = 0 |