1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 14:13:48 -05:00

14 lines
269 B
Ruby
Raw Normal View History

# 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