mastodon/app/models/stream_entry.rb

31 lines
472 B
Ruby
Raw Normal View History

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