6 Matching Annotations
- Feb 2022
-
-
-
By default the wizard will render a view with the same name as the step. So for our controller AfterSignupController with a view path of /views/after_signup/ if call the :confirm_password step, our wizard will render /views/after_signup/confirm_password.html.erb
-
To send someone to the first step in this wizard we can direct them to after_signup_path(:confirm_password)
-
steps :confirm_password, :confirm_profile, :find_friends
-
-
-
people want to have an object, lets call it a Product that they want to create in several different steps
-