chinwagsocial/app/models/user.rb

10 lines
237 B
Ruby
Raw Normal View History

2016-02-23 02:00:20 +11:00
class User < ActiveRecord::Base
belongs_to :account, inverse_of: :user
2016-02-23 04:10:30 +11:00
validates :account, presence: true
def timeline
StreamEntry.where(account_id: self.account.following, activity_type: 'Status').order('id desc')
end
2016-02-23 02:00:20 +11:00
end