mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 13:26:05 +10:00
10 lines
187 B
Ruby
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
|