summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 8b56eea..4d978b0 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -34,6 +34,12 @@ VISIBILITY_PRIVATE = 'private'
VISIBILITY_INTERNAL = 'internal'
VISIBILITY_PUBLIC = 'public'
+ACCESS_GUEST = 10
+ACCESS_REPORTER = 20
+ACCESS_DEVELOPER = 30
+ACCESS_MASTER = 40
+ACCESS_OWNER = 50
+
class SidekiqManager(object):
"""Manager for the Sidekiq methods.
@@ -2198,12 +2204,6 @@ class Group(GitlabObject):
('issues', 'GroupIssueManager', [('group_id', 'id')]),
)
- GUEST_ACCESS = gitlab.GUEST_ACCESS
- REPORTER_ACCESS = gitlab.REPORTER_ACCESS
- DEVELOPER_ACCESS = gitlab.DEVELOPER_ACCESS
- MASTER_ACCESS = gitlab.MASTER_ACCESS
- OWNER_ACCESS = gitlab.OWNER_ACCESS
-
def transfer_project(self, id, **kwargs):
"""Transfers a project to this new groups.