You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
472 B

class StreamEntry < ActiveRecord::Base
belongs_to :account, inverse_of: :stream_entries
belongs_to :activity, polymorphic: true
validates :account, :activity, presence: true
def object_type
self.activity.object_type
end
def verb
self.activity.verb
end
def targeted?
[:follow].include? self.verb
end
def target
self.activity.target
end
def title
self.activity.title
end
def content
self.activity.content
end
end