This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# frozen_string_literal: true
|
|
|
|
class Webhooks::EventPresenter < ActiveModelSerializers::Model
|
|
attributes :type, :created_at, :object
|
|
|
|
def initialize(type, object)
|
|
super()
|
|
|
|
@type = type
|
|
@created_at = Time.now.utc
|
|
@object = object
|
|
end
|
|
end
|