I\'m making a page with activeadmin to update password of current user. I have a non-persisted model to check validation of password, etc. My problem is that when I try
I couldn't find a way to do it with activeadmin but defining the routes manually worked:
#config/routes.rb match "/admin/update_passwords" => 'admin/update_passwords#edit', via: :get, as: "admin_update_passwords" match "/admin/update_passwords" => 'admin/update_passwords#update', via: :post