これは私のauthorization_rules.rb
です:
role :guest do
has_permission_on [:paying_users], :to => [:index]
end
これは私のpaying_users.rb
コントローラーです:
class PayingUsersController < ApplicationController
filter_resource_access
def index
@users = User.all
end
end
とにかく、これは私routes.rb
の、関連する部分です:
resources :paying_users
私がアクセスするmyapp.com/paying_users
と、ログインページにリダイレクトされませんが、そうしないでください。
これを修正するにはどうすればよいですか?
declarative_authorization を使用して承認を処理します。