summaryrefslogtreecommitdiff
path: root/docs/gl_objects/system_hooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/gl_objects/system_hooks.py')
-rw-r--r--docs/gl_objects/system_hooks.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/docs/gl_objects/system_hooks.py b/docs/gl_objects/system_hooks.py
deleted file mode 100644
index 9bc487b..0000000
--- a/docs/gl_objects/system_hooks.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# list
-hooks = gl.hooks.list()
-# end list
-
-# test
-gl.hooks.get(hook_id)
-# end test
-
-# create
-hook = gl.hooks.create({'url': 'http://your.target.url'})
-# end create
-
-# delete
-gl.hooks.delete(hook_id)
-# or
-hook.delete()
-# end delete