Answers for "change after sign up redirect path in devise"

1

devise redirectt after sign up

class RegistrationsController < Devise::RegistrationsController
  protected

  def after_sign_up_path_for(resource)
    '/an/example/path' # Or :prefix_to_your_route
  end
end
Posted by: Guest on January-26-2021

Code answers related to "change after sign up redirect path in devise"

Browse Popular Code Answers by Language