I have this problem in ActiveAdmin. When I try to reset a user's password with devise send_reset_password_instructions.
member_action :reset_password, method: :get do
resource.send_reset_password_instructions
redirect_to users_path, notice: "instructions sent"
end
I receive the email but when I try to set the new password I get the error reset password token is invalid. When I do the same process but within my webapp, the token is valid and the new password is set.
Any ideas/suggestions?