4f83d5451e
- Fix slack scopes - Docs for authentication Fixes: #704 , #973
11 lines
272 B
Ruby
11 lines
272 B
Ruby
class HookJob < ApplicationJob
|
|
queue_as :integrations
|
|
|
|
def perform(hook, message)
|
|
return unless hook.slack?
|
|
|
|
Integrations::Slack::SendOnSlackService.new(message: message, hook: hook).perform
|
|
rescue StandardError => e
|
|
Raven.capture_exception(e)
|
|
end
|
|
end
|