Files
libr-2/app/models/timeline_source.rb
2015-10-24 23:22:56 +08:00

10 lines
187 B
Ruby

class TimelineSource < ActiveRecord::Base
belongs_to :post
belongs_to :user
scope :shares, -> { where action_type: 'share' }
scope :likes, -> { where action_type: 'like' }
end