Files

8 lines
148 B
Ruby
Raw Permalink Normal View History

2021-09-20 08:22:39 +02:00
module Recentable
extend ActiveSupport::Concern
included do
scope :recent, ->(number) { order("created_at DESC").limit(number) }
end
end