CanCanCan、Devise、Rolifyを使っています。
私ApplicationController
はこのように見えます:
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
before_filter :new_post
rescue_from CanCan::AccessDenied do |exception|
redirect_to root_url, :alert => exception.message
end
def new_post
@post = Post.new
end
end
私routes.rb
はこのように見えます:
authenticate :user, lambda { |u| u.has_role? :admin or :editor } do
get 'newsroom', to: 'newsroom#index', as: "newsroom"
get 'newsroom/published', to: 'newsroom#published'
get 'newsroom/unpublished', to: 'newsroom#unpublished'
end
# truncated for brevity
root to: "posts#index"
これはability.rb
関連する私のものです:
elsif user.has_role? :member
can :read, :all
cannot :read, :newsroom
としてログインしているときに:member
にアクセスしようとすると/newsroom
、次のエラーが表示されます。
NameError at /newsroom
uninitialized constant Newsroom
にリダイレクトされるのではなく、私が期待root_url
していたようなものです。:alert
ここで何が起こっているのかわかりません。
編集 1
価値があるのは、これを my に追加した場合にのみ取得できますNewsroomController
:
authorize_resource