summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
authorIvan Sugonyak <sugonyak.ivan@gmail.com>2021-06-25 20:49:04 +0300
committerIvan Sugonyak <sugonyak.ivan@gmail.com>2021-06-26 02:01:08 +0300
commit4a7e9b86aa348b72925bce3af1e5d988b8ce3439 (patch)
tree2ca75418bb4e5670f30ec5a3d2fe30447b83dc29 /gitlab/v4/objects/groups.py
parentaf7aae73e90b54cab7bbf38a8575157416693423 (diff)
downloadgitlab-4a7e9b86aa348b72925bce3af1e5d988b8ce3439.tar.gz
feat(api): add group hooks
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 429d95d..ee82415 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -13,6 +13,7 @@ from .custom_attributes import GroupCustomAttributeManager # noqa: F401
from .deploy_tokens import GroupDeployTokenManager # noqa: F401
from .epics import GroupEpicManager # noqa: F401
from .export_import import GroupExportManager, GroupImportManager # noqa: F401
+from .hooks import GroupHookManager # noqa: F401
from .issues import GroupIssueManager # noqa: F401
from .labels import GroupLabelManager # noqa: F401
from .members import ( # noqa: F401
@@ -52,6 +53,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
("descendant_groups", "GroupDescendantGroupManager"),
("exports", "GroupExportManager"),
("epics", "GroupEpicManager"),
+ ("hooks", "GroupHookManager"),
("imports", "GroupImportManager"),
("issues", "GroupIssueManager"),
("issues_statistics", "GroupIssuesStatisticsManager"),