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