2016-02-22 09:00:20 -06:00
|
|
|
class User < ActiveRecord::Base
|
|
|
|
belongs_to :account, inverse_of: :user
|
2016-02-22 11:10:30 -06:00
|
|
|
|
|
|
|
validates :account, presence: true
|
2016-02-26 13:48:20 -06:00
|
|
|
|
|
|
|
def timeline
|
|
|
|
StreamEntry.where(account_id: self.account.following, activity_type: 'Status').order('id desc')
|
|
|
|
end
|
2016-02-22 09:00:20 -06:00
|
|
|
end
|