summaryrefslogtreecommitdiff
path: root/gitlab.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab.py')
-rw-r--r--gitlab.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/gitlab.py b/gitlab.py
index e3af9fc..87728e0 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -604,6 +604,12 @@ class Group(GitlabObject):
requiredCreateAttrs = ['name', 'path']
shortPrintAttr = 'name'
+ GUEST_ACCESS = 10
+ REPORTER_ACCESS = 20
+ DEVELOPER_ACCESS = 30
+ MASTER_ACCESS = 40
+ OWNER_ACCESS = 50
+
def Member(self, id=None, **kwargs):
return self._getListOrObject(GroupMember, id,
group_id=self.id,