diff options
Diffstat (limited to 'gitlab/v4/objects/hook.py')
-rw-r--r-- | gitlab/v4/objects/hook.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gitlab/v4/objects/hook.py b/gitlab/v4/objects/hook.py new file mode 100644 index 0000000..bcf5be5 --- /dev/null +++ b/gitlab/v4/objects/hook.py @@ -0,0 +1,9 @@ +class Hook(ObjectDeleteMixin, RESTObject): + _url = "/hooks" + _short_print_attr = "url" + + +class HookManager(NoUpdateMixin, RESTManager): + _path = "/hooks" + _obj_cls = Hook + _create_attrs = (("url",), tuple()) |