假设我没有登录。
在这种情况下,它会在访问 mails_controller 中的操作时显示此 Flash 通知。
You need to sign in or sign up before continuing.
但是,它不会显示在 community_controller 中。
为什么?我该如何解决?
mails_controller.rb
class MailsController < ApplicationController
before_filter :authenticate_user!
....
end
社区控制器.rb
class CommunitiesController < ApplicationController
load_and_authorize_resource :find_by => :id
before_filter :authenticate_user!
end