docbrown/app/serializers/webhook/event_serializer.rb
Jan Klimo a6ea2c9618
Migrate serialization to jsonapi-serializer (#9682)
This replaces the abandoned fast_jsonapi.
2020-08-08 15:41:44 +02:00

8 lines
172 B
Ruby

module Webhook
class EventSerializer < ApplicationSerializer
set_type :webhook_event
set_id :event_id
attributes :event_type, :timestamp, :payload
end
end