23 lines
763 B
Ruby
23 lines
763 B
Ruby
# All Administrate controllers inherit from this `Admin::ApplicationController`,
|
|
# making it the ideal place to put authentication logic or other
|
|
# before_actions.
|
|
#
|
|
# If you want to add pagination or other controller-level concerns,
|
|
# you're free to overwrite the RESTful controller actions.
|
|
module Manager
|
|
class ApplicationController < Administrate::ApplicationController
|
|
before_action :authenticate_administration!
|
|
before_action :default_params
|
|
|
|
# Override this value to specify the number of elements to display at a time
|
|
# on index pages. Defaults to 20.
|
|
# def records_per_page
|
|
# params[:per_page] || 20
|
|
# end
|
|
|
|
def default_params
|
|
params[:order] ||= "created_at"
|
|
params[:direction] ||= "desc"
|
|
end
|
|
end
|
|
end
|