2016-02-22 15:00:20 +00:00
|
|
|
class StreamEntry < ActiveRecord::Base
|
|
|
|
belongs_to :account, inverse_of: :stream_entries
|
|
|
|
belongs_to :activity, polymorphic: true
|
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
validates :account, :activity, presence: true
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
def object_type
|
2016-02-22 17:10:30 +00:00
|
|
|
self.activity.object_type
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def verb
|
2016-02-22 17:10:30 +00:00
|
|
|
self.activity.verb
|
|
|
|
end
|
|
|
|
|
|
|
|
def targeted?
|
|
|
|
[:follow].include? self.verb
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def target
|
2016-02-22 17:10:30 +00:00
|
|
|
self.activity.target
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
self.activity.title
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
2016-02-22 17:10:30 +00:00
|
|
|
self.activity.content
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
end
|