mirror of
https://github.com/openSUSE/osem.git
synced 2026-02-07 12:41:08 -05:00
Conflicts: app/controllers/admin/commercials_controller.rb app/controllers/admin/questions_controller.rb app/controllers/admin/users_controller.rb
18 lines
588 B
Ruby
18 lines
588 B
Ruby
module Admin
|
|
class BaseController < ApplicationController
|
|
before_filter :verify_user_admin
|
|
|
|
def verify_user_admin
|
|
if (current_user.nil?)
|
|
redirect_to new_user_session_path
|
|
return false
|
|
end
|
|
unless (current_user.has_role? :organizer, :any) || (current_user.has_role? :cfp, :any) ||
|
|
(current_user.has_role? :info_desk, :any) ||
|
|
(current_user.has_role? :volunteers_coordinator, :any) || current_user.is_admin
|
|
raise CanCan::AccessDenied.new('You are not authorized to access this area!')
|
|
end
|
|
end
|
|
end
|
|
end
|