clarion/app/controllers/management/management_controller.rb
2015-08-05 14:55:58 +03:00

14 lines
259 B
Ruby

module Management
class ManagementController < ::ApplicationController
before_action :authenticate_user!, :authorize_user!
layout 'management'
private
def authorize_user!
head :forbidden unless current_user.admin?
end
end
end