summaryrefslogtreecommitdiff
path: root/app/models/hooks/service_hook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/hooks/service_hook.rb')
-rw-r--r--app/models/hooks/service_hook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/hooks/service_hook.rb b/app/models/hooks/service_hook.rb
index eef24052a06..40e43c27f91 100644
--- a/app/models/hooks/service_hook.rb
+++ b/app/models/hooks/service_hook.rb
@@ -2,6 +2,6 @@ class ServiceHook < WebHook
belongs_to :service
def execute(data)
- super(data, 'service_hook')
+ WebHookService.new(self, data, 'service_hook').execute
end
end