activitypub-academy/app/lib/activity_log_event.rb

11 lines
169 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class ActivityLogEvent
2022-12-08 18:27:05 +01:00
def initialize
@timestamp = Time.now.utc.iso8601
end
attr_accessor :type, :path, :data, :timestamp
end