mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 04:17:34 -05:00
19 lines
592 B
Ruby
19 lines
592 B
Ruby
|
class AdminWebHookSerializer < ApplicationSerializer
|
||
|
attributes :id,
|
||
|
:payload_url,
|
||
|
:content_type,
|
||
|
:last_delivery_status,
|
||
|
:secret,
|
||
|
:wildcard_web_hook,
|
||
|
:verify_certificate,
|
||
|
:active,
|
||
|
:web_hook_event_types
|
||
|
|
||
|
has_many :categories, serializer: BasicCategorySerializer, embed: :ids, include: false
|
||
|
has_many :groups, serializer: BasicGroupSerializer, embed: :ids, include: false
|
||
|
|
||
|
def web_hook_event_types
|
||
|
ActiveModel::ArraySerializer.new(object.web_hook_event_types).as_json
|
||
|
end
|
||
|
end
|