mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
14 lines
269 B
Ruby
14 lines
269 B
Ruby
|
# 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
|