我正尝试跳过对自定义ActiveAdmin收集操作的身份验证。
在active_admin初始化程序中,我具有以下配置:
config.authentication_method = :authenticate_user!
config.current_user_method = :current_user
身份验证工作正常,但是当您尝试跳过特定操作的身份验证时,将显示以下错误。
skip_before_action :authenticate_user!, only: :check
在process_action回调之前:authenticate_user!一直没有 定义
答案 0 :(得分:0)
您可以在Base / Application控制器中尝试一下吗...
list