mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-06 18:01:53 +00: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
|