1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-03 09:18:59 +09:00
whippy-edition/app/models/concerns/streamable.rb

32 lines
415 B
Ruby
Raw Normal View History

module Streamable
extend ActiveSupport::Concern
included do
has_one :stream_entry, as: :activity
def title
super
end
def content
title
end
def target
super
end
def object_type
:activity
end
def thread
super
end
after_create do
self.account.stream_entries.create!(activity: self) if self.account.local?
end
end
end