summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2021-03-24 11:10:24 +0100
committerGitHub <noreply@github.com>2021-03-24 11:10:24 +0100
commit02ce49ede50e698840a0324b4b90ca1d3084d961 (patch)
tree74e25ed783de5ac8b5870f46b20dd18d339cf55e /gitlab/v4/objects/groups.py
parente798c9b685f1a3da8875f2cef9e6749f86d9ecbd (diff)
parent2a0fbdf9fe98da6c436230be47b0ddb198c7eca9 (diff)
downloadgitlab-02ce49ede50e698840a0324b4b90ca1d3084d961.tar.gz
Merge pull request #1363 from python-gitlab/feat/all-audit-events
Feat: cover all audit events
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index d96acfd..e859e0e 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -3,6 +3,7 @@ from gitlab import exceptions as exc
from gitlab.base import RESTManager, RESTObject
from gitlab.mixins import CRUDMixin, ListMixin, ObjectDeleteMixin, SaveMixin
from .access_requests import GroupAccessRequestManager
+from .audit_events import GroupAuditEventManager
from .badges import GroupBadgeManager
from .boards import GroupBoardManager
from .custom_attributes import GroupCustomAttributeManager
@@ -34,6 +35,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
_short_print_attr = "name"
_managers = (
("accessrequests", "GroupAccessRequestManager"),
+ ("audit_events", "GroupAuditEventManager"),
("badges", "GroupBadgeManager"),
("boards", "GroupBoardManager"),
("customattributes", "GroupCustomAttributeManager"),