skill-assessment-app/app/controllers/admin_controller.rb

40 lines
971 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 17:49:09 -05:00
class AdminController < ApplicationController
2016-09-19 16:40:56 -05:00
include Pundit
2016-08-18 18:22:57 -05:00
layout 'admin'
before_action :authorize_user
2016-08-18 15:35:17 -05:00
2016-09-19 16:40:56 -05:00
rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized
2016-09-21 17:04:08 -05:00
after_action :verify_authorized, except: :index
after_action :verify_policy_scoped, only: :index
2016-08-18 15:35:17 -05:00
helper_method :sort_direction
2017-03-06 13:35:02 -06:00
helper_method :sort_column
def current_user
@current_user ||= User.find_by(id: session[:user]) if session[:user]
2016-08-18 15:35:17 -05:00
end
helper_method :current_user
2016-08-18 15:35:17 -05:00
private
2017-03-06 13:35:02 -06:00
def sort_column
:completed_at
end
def sort_direction
2017-03-06 13:35:02 -06:00
%w(asc desc).include?(params[:direction]) ? params[:direction] : 'asc'
end
def authorize_user
session[:request] = request.fullpath
redirect_to admin_login_path unless current_user
2016-08-18 15:35:17 -05:00
end
2016-09-19 16:40:56 -05:00
def user_not_authorized
flash[:error] = "You are not authorized to perform this action."
2016-09-20 14:22:20 -05:00
redirect_to(request.referer || admin_login_path)
2016-09-19 16:40:56 -05:00
end
2016-08-17 17:49:09 -05:00
end