Class: Slack::Messenger::PayloadMiddleware::FormatAttachments
- Defined in:
- lib/slack-messenger/payload_middleware/format_attachments.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
default_opts, #initialize, middleware_name, options
Constructor Details
This class inherits a constructor from Slack::Messenger::PayloadMiddleware::Base
Instance Method Details
#call(payload = {}) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/slack-messenger/payload_middleware/format_attachments.rb', line 11 def call payload={} payload = payload.dup = payload.delete(:attachments) ||= payload.delete("attachments") = wrap_array().map do || ["text", :text].each do |key| if .key?(key) [key] = Util::LinkFormatter.format([key], **) end end end payload[:attachments] = if && !.empty? payload end |