2017-12-28 19:44:11 +01:00
|
|
|
module Manager
|
|
|
|
class ApplicationController < Administrate::ApplicationController
|
|
|
|
before_action :authenticate_administration!
|
|
|
|
before_action :default_params
|
|
|
|
|
|
|
|
def default_params
|
|
|
|
params[:order] ||= "created_at"
|
|
|
|
params[:direction] ||= "desc"
|
|
|
|
end
|
2018-01-17 12:13:26 +01:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def authenticate_administration!
|
|
|
|
if administration_signed_in?
|
|
|
|
super
|
|
|
|
else
|
|
|
|
redirect_to manager_sign_in_path
|
|
|
|
end
|
|
|
|
end
|
2017-12-28 19:44:11 +01:00
|
|
|
end
|
|
|
|
end
|