mastodon/app/models/user.rb

10 lines
237 B
Ruby
Raw Normal View History

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
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