Skip to content
Snippets Groups Projects
Commit 02e1871f authored by pabois's avatar pabois
Browse files

roles names

parent 7c81d8f6
No related branches found
No related tags found
No related merge requests found
class Server::ApplicationController < ApplicationController
layout 'server/layouts/application'
before_action :authenticate_user!, :ensure_user_if_superadmin
before_action :authenticate_user!, :ensure_user_if_server_admin
protected
......@@ -9,7 +9,7 @@ class Server::ApplicationController < ApplicationController
add_breadcrumb 'Tableau de bord', :server_root_path
end
def ensure_user_if_superadmin
raise CanCan::AccessDenied unless current_user.superadmin?
def ensure_user_if_server_admin
raise CanCan::AccessDenied unless current_user.server_admin?
end
end
......@@ -45,7 +45,7 @@ class Ability
can :manage, User, university_id: @user.university_id, role: @user.managed_roles
end
def superadmin
def server_admin
can :manage, :all
end
end
......@@ -74,7 +74,7 @@ module User::WithAuthentication
def set_default_role
if User.all.empty?
role = :superadmin
role = :server_admin
elsif university.users.empty?
role = :admin
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment