私はdeviseとcancanを使用して認証と承認を行うアプリケーションを作成しました。 cancanを使用する私はadminとoperatorの2つの役割を定義しました。管理者はすべてを管理することができ、オペレータはすべてを編集できますが、削除することはできません.3人目は作成して管理できる通常のユーザーです。しかし、コードはデフォルトのelseブロックだけになります。これは私の能力クラスとのindex.htmlRails:Cancanに関する問題
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new # guest user
if user.role? :admin
can :manage, :all
elsif user.role? :operator
can :read, :all
else
can :read, :all
end
end
end
index.htmlをあなたの一瞬の設定によると
<h1>Listing todos</h1>
<table>
<tr>
<th>Name</th>
<th>Description</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @todos.each do |todo| %>
<tr>
<td><%= todo.name %></td>
<td><%= todo.description %></td>
<% if can? :show, @todo %>
<td><%= link_to 'Show', todo %></td>
<% end %>
<% if can? :update, @todo %>
<td><%= link_to 'Edit', edit_todo_path(todo) %></td>
<% end %>
<% if can? :destroy, @todo %>
<td><%= link_to 'Destroy', todo, :confirm => 'Are you sure?', :method => :delete %></td>
<% end %>
</tr>
<% end %>
</table>
<br />
<% if can? :destroy, @todo %>
<%= link_to 'New Todo', new_todo_path %>
<% end %>
あなたは 'user.rb'のメソッド' role? 'を表示できます – MikDiet