class ApiPresenter::Configuration
Attributes
count_param[RW]
Querystring param key that determines whether or not to just produce a total count
@return [Symbol]
include_param[RW]
Querystring param key containing the included collection names
@return [Symbol]
policies_param[RW]
Querystring param key that determines whether or not to resolve policies for primary collection
@return [Symbol]
Public Class Methods
new()
click to toggle source
# File lib/api_presenter/configuration.rb, line 21 def initialize @count_param = :count @include_param = :include @policies_param = :policies end