summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-05-14 22:15:18 +0200
committerGitHub <noreply@github.com>2021-05-14 22:15:18 +0200
commitf35c73e50918e4d55b70323669f394e52e75cde9 (patch)
tree8633286b906f4e8e87a3be4e86a0ad0890844de5 /gitlab/v4/objects/groups.py
parentc4979a889c8aa6f0c0a5d71b45b3cde7e642b2e7 (diff)
parente444b39f9423b4a4c85cdb199afbad987df026f1 (diff)
downloadgitlab-f35c73e50918e4d55b70323669f394e52e75cde9.tar.gz
Merge pull request #1376 from Shkurupii/feat-get-inherited-members
feat: get inherited member for project/group
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index 9e27601..574c57b 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -11,7 +11,7 @@ from .export_import import GroupExportManager, GroupImportManager # noqa: F401
from .epics import GroupEpicManager # noqa: F401
from .issues import GroupIssueManager # noqa: F401
from .labels import GroupLabelManager # noqa: F401
-from .members import GroupMemberManager # noqa: F401
+from .members import GroupMemberManager, GroupMemberAllManager # noqa: F401
from .merge_requests import GroupMergeRequestManager # noqa: F401
from .milestones import GroupMilestoneManager # noqa: F401
from .notification_settings import GroupNotificationSettingsManager # noqa: F401
@@ -45,6 +45,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
("issues", "GroupIssueManager"),
("labels", "GroupLabelManager"),
("members", "GroupMemberManager"),
+ ("members_all", "GroupMemberAllManager"),
("mergerequests", "GroupMergeRequestManager"),
("milestones", "GroupMilestoneManager"),
("notificationsettings", "GroupNotificationSettingsManager"),