在我的ability.rb
文件中,我为某些用户定义了角色检查,但不是所有用户,如下所示:
if user.role? :superadmin
can :manage, :all
elsif user.role? :admin
can :manage, :all
end
但该应用程序共有 6 个用户。是否会为我在此处未明确提及的用户设置任何默认功能?如果是,他们的默认能力是什么?
在我的ability.rb
文件中,我为某些用户定义了角色检查,但不是所有用户,如下所示:
if user.role? :superadmin
can :manage, :all
elsif user.role? :admin
can :manage, :all
end
但该应用程序共有 6 个用户。是否会为我在此处未明确提及的用户设置任何默认功能?如果是,他们的默认能力是什么?