gearheads
/
mastodon
Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
mastodon/app/models/concerns/streamable.rb

32 lines
405 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
2016-09-29 21:28:21 +02:00
account.stream_entries.create!(activity: self) if account.local?
end
end
end