5 lines
142 B
Ruby
5 lines
142 B
Ruby
|
# frozen_string_literal: true
|
||
|
class WebhookSerializer < ActiveModel::Serializer
|
||
|
attributes :text, :username, :icon_url # , :attachments
|
||
|
end
|