我在active_admin中使用CanCan Ability。我想在页面show中发表评论。但是我使用CanCan是不能在显示页面中添加评论。
这是错误消息:
You are not authorized to perform this action.
答案 0 :(得分:1)
在ActiveAdmin::Comment
配置ability.rb
:
can [:read, :create], ActiveAdmin::Comment
我从这个看似无关的页面https://github.com/ryanb/cancan/issues/597
找到答案