diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-03-07 12:50:26 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-03-07 15:00:06 +0100 |
commit | 2a0fbdf9fe98da6c436230be47b0ddb198c7eca9 (patch) | |
tree | 1d5c585508385b339d0b60224b74b7cc47a6cf92 /gitlab/v4/objects/groups.py | |
parent | 84e3247d0cd3ddb1f3aa0ac91fb977c3e1e197b5 (diff) | |
download | gitlab-feat/all-audit-events.tar.gz |
feat(objects): add support for group audit events APIfeat/all-audit-events
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r-- | gitlab/v4/objects/groups.py | 2 |
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"), |