8 lines
185 B
Ruby
8 lines
185 B
Ruby
# frozen_string_literal: true
|
|
module Api
|
|
module V2
|
|
class WebhookSerializer < ApplicationSerializer
|
|
attributes :text, :username, :icon_url # , :attachments
|
|
end
|
|
end
|
|
end
|