mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
16 lines
285 B
Ruby
16 lines
285 B
Ruby
module Kaminari
|
|
module MongoidCriteriaMethods
|
|
extend ActiveSupport::Concern
|
|
module InstanceMethods
|
|
def limit_value
|
|
options[:limit]
|
|
end
|
|
def offset_value
|
|
options[:skip]
|
|
end
|
|
def total_count
|
|
count
|
|
end
|
|
end
|
|
end
|
|
end
|