We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 962e806 commit 7afd232Copy full SHA for 7afd232
gitlab.py
@@ -604,6 +604,12 @@ class Group(GitlabObject):
604
requiredCreateAttrs = ['name', 'path']
605
shortPrintAttr = 'name'
606
607
+ GUEST_ACCESS = 10
608
+ REPORTER_ACCESS = 20
609
+ DEVELOPER_ACCESS = 30
610
+ MASTER_ACCESS = 40
611
+ OWNER_ACCESS = 50
612
+
613
def Member(self, id=None, **kwargs):
614
return self._getListOrObject(GroupMember, id,
615
group_id=self.id,
0 commit comments