2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
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 19:28:21 +00:00
|
|
|
account.stream_entries.create!(activity: self) if account.local?
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|