I am using devise and recently added active admin, which created a separate table of admin_users to keep admins.
All works fine with Active Admin when I try to log i
I couldn't get @coreyward's solution to work, but editing config/application.rb
as per this Devise post and adding:
ActiveAdmin.register_page "Dashboard" do
controller do
skip_before_action :name_of_filter_to_skip
end
# Other code
end
to admin/dashboard.rb
did the trick. It didn't work by just editing config/application.rb
alone. Make sure to restart your server!