Files
old-konsultanti-next-gen/app/models/concerns/recentable.rb
2021-09-20 08:22:39 +02:00

8 lines
148 B
Ruby

module Recentable
extend ActiveSupport::Concern
included do
scope :recent, ->(number) { order("created_at DESC").limit(number) }
end
end