Rename `opt` to `opts` on ChatNotificationService#execute

parent 6dc3efdd
...@@ -51,11 +51,11 @@ class ChatNotificationService < Service ...@@ -51,11 +51,11 @@ class ChatNotificationService < Service
channel_name = get_channel_field(object_kind).presence || channel channel_name = get_channel_field(object_kind).presence || channel
opt = {} opts = {}
opt[:channel] = channel_name if channel_name opts[:channel] = channel_name if channel_name
opt[:username] = username if username opts[:username] = username if username
notifier = Slack::Notifier.new(webhook, opt) notifier = Slack::Notifier.new(webhook, opts)
notifier.ping(message.pretext, attachments: message.attachments, fallback: message.fallback) notifier.ping(message.pretext, attachments: message.attachments, fallback: message.fallback)
true true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment