24 lines
501 B
Ruby
24 lines
501 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AdminWebHookEventSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:web_hook_id,
|
|
:request_url,
|
|
:headers,
|
|
:payload,
|
|
:status,
|
|
:response_headers,
|
|
:response_body,
|
|
:duration,
|
|
:created_at,
|
|
:redelivering
|
|
|
|
def request_url
|
|
object.web_hook.payload_url
|
|
end
|
|
|
|
def redelivering
|
|
object.redelivering_webhook_event.present?
|
|
end
|
|
end
|