Feature: Slack integration (#783)
- Integrations architecture - Slack integration
This commit is contained in:
11
app/jobs/hook_job.rb
Normal file
11
app/jobs/hook_job.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class HookJob < ApplicationJob
|
||||
queue_as :integrations
|
||||
|
||||
def perform(hook, message)
|
||||
return unless hook.slack?
|
||||
|
||||
Integrations::Slack::OutgoingMessageBuilder.perform(hook, message)
|
||||
rescue StandardError => e
|
||||
Raven.capture_exception(e)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user