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