Files
national-parks-api/app/controllers/api/v1/base_controller.rb

14 lines
252 B
Ruby

class Api::V1::BaseController < ApplicationController
DEFAULT_PAGE_SIZE = 10
private
def pagination_limit
(params[:limit].presence || DEFAULT_PAGE_SIZE).to_i
end
def pagination_offset
(params[:offset].presence || 0).to_i
end
end