I used the standard devise redirection method after the update, but unfortunately it does not work. routes.rb
devise_for :users root "welcome#index" get "/profile" => "profile#index", as: :profile
here is my application_controller.rb
def after_update_path_for(resource) profile_path end
what could be the problem?