プロジェクトでアクティブな管理者を使用しようとしています。このプロジェクトでは、別の宝石を使って異なるテナントを分離し、通常の認証にはhas_secure_passwordも使用します。特定の名前空間(ActiveAdmin)内でのみapplication_controller呼び出しをスキップする方法
ユーザーがアクティブな管理者(別の名前空間 - 管理者)に行くと、これらのフィルタを両方ともスキップする問題があります。
class ApplicationController < ActionController::Base
force_ssl
helper :all
protect_from_forgery
set_current_tenant_by_subdomain(:account, :subdomain) # need to skip this call when in the admin namespace
before_filter :require_user # need to skip this call when in the admin namespace
end
ありがとうございました!
これを行いました。ご協力いただきありがとうございます! – lundie