summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitlab/objects.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 3af2b7a..02cd756 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -717,6 +717,12 @@ class GroupManager(BaseManager):
url = '/groups?search=' + query
return self.gitlab._raw_list(url, self.obj_cls, **kwargs)
+
+class GroupProjectManager(BaseManager):
+ obj_cls = GroupProject
+
+
+class GroupProject(GitlabObject):
def list_projects(self, gid, **kwargs):
"""List projects in a group