summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/triggers.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/triggers.py')
-rw-r--r--gitlab/v4/objects/triggers.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/gitlab/v4/objects/triggers.py b/gitlab/v4/objects/triggers.py
index c30d33a..f5dadca 100644
--- a/gitlab/v4/objects/triggers.py
+++ b/gitlab/v4/objects/triggers.py
@@ -1,9 +1,15 @@
-from gitlab import cli, types
+from gitlab import cli
from gitlab import exceptions as exc
from gitlab.base import * # noqa
from gitlab.mixins import * # noqa
+__all__ = [
+ "ProjectTrigger",
+ "ProjectTriggerManager",
+]
+
+
class ProjectTrigger(SaveMixin, ObjectDeleteMixin, RESTObject):
@cli.register_custom_action("ProjectTrigger")
@exc.on_http_error(exc.GitlabOwnershipError)