mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
17 lines
369 B
Ruby
17 lines
369 B
Ruby
|
class AdminWebHookEventSerializer < ApplicationSerializer
|
||
|
attributes :id,
|
||
|
:web_hook_id,
|
||
|
:request_url,
|
||
|
:headers,
|
||
|
:payload,
|
||
|
:status,
|
||
|
:response_headers,
|
||
|
:response_body,
|
||
|
:duration,
|
||
|
:created_at
|
||
|
|
||
|
def request_url
|
||
|
object.web_hook.payload_url
|
||
|
end
|
||
|
end
|