metamaps--metamaps/app/serializers/webhook_serializer.rb
2016-11-05 09:34:50 -07:00

10 lines
235 B
Ruby

# frozen_string_literal: true
class WebhookSerializer < ActiveModel::Serializer
attributes :text, :username, :icon_url # , :attachments
attribute :channel, if: :has_channel?
def has_channel?
true if object.channel
end
end