31 lines
		
	
	
		
			472 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			472 B
		
	
	
	
		
			Ruby
		
	
	
	
| 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
 |