How do I do it? It's sort of like currently trending posts i.e. the posts don't necessarily have to be created in the last 2 hours.
scope :top, ->{ order(:cached_votes_total => :desc) }
scope :trending, ?
How do I do it? It's sort of like currently trending posts i.e. the posts don't necessarily have to be created in the last 2 hours.
scope :top, ->{ order(:cached_votes_total => :desc) }
scope :trending, ?