Forked from
PortalMEC / portalmec
2213 commits behind the upstream repository.
-
Mateus Rambo Strey authoredMateus Rambo Strey authored
management_controller.rb 250 B
class ManagementController < ApplicationController
before_action :authenticate_user!
before_action :is_admin?
layout 'management'
private
def is_admin?
unless current_user.is_admin?
redirect_to :root
end
end
end