我是 ruby on rails 的新手,我正在使用 rails 4 和 cancancan,我也使用 Devise gem。我有 4 个不同的用户,管理员、学校、特许经营所有者和普通用户,我有一个能力模型,其中包含:
`class Ability include CanCan::Ability
def initialize(user)
user ||= User.new
if user.admin?
can :manage, :all
elsif user.franOwner?
can [:read], menus
elsif user.school?
can :read, all
else
can :read, :all
cannot [:create], Menu
end
end`
我有一个我不希望普通用户在 index.html.erb 中看到的链接
` <% if user.admin? %>
<%= link_to 'New Menu', new_menu_path %>
<% end %>`
但是说用户未定义,我在哪里定义这个以及如何定义?如果我能得到这个工作,我可能能够为其他类型的用户复制不同的东西,我们将不胜感激。