ability.rb
can :destroy, Business, Business.where(id: user.auth_ids)
index.html.erb
<% if can? :destroy, @business %>
<%= link_to 'delete', business_path(@business.id), method: :delete%>
<% end %>
I want to access delete button if user field auth_ids: [] contains business id.
But I got error like this
CanCan::Error - The can? and cannot? call cannot be used with a raw sql 'can' definition.
Anybody could tell me what causes the problem and how to fix it?
This seems to happen when the syntax isn't quite right. Try a hash with your condition:
or a block condition with your scope: