We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Instructions work fine on the latest version of Devise
Fix broken URL
Revert 8d1b4b9e3cde314f6dc079418818e7d3378c1dd9...a99b4c565c12b3e2ad157b12c78a08340a9991a7 on How To: Redirect to a specific page on successful sign up (registration)
Created How To: Redirect to a specific page on successful sign up (registration) (markdown)
Destroyed How To: Redirect to a specific page on successful sign up (registration) (markdown)
Revert 3f352ea777e76321cda2528e60060e4fdeae3c1d...da8a231951ca86dff2e59acc8799a7831ea92039 on How To: Redirect to a specific page on successful sign up (registration)
Updated How To: Redirect to a specific page on successful sign up (registration) (markdown)
when the Controller name is "Registrations.rb" ,then it wont work. you have to change that name to registrations_controller.rb ; also the location of the controller is more important, it should be in app/controllers/registrations_controller.rb
Comments added to clarify the understanding of redirection. Code upgrade to the new syntax of Ruby.
I just copied the line into routes.rb, but left the 'devise_for :users' untouched. Thus, it never hit new line with the controllers, and my 'after_sign_up..' were not being called.
make capitalization consistent
According to: http://stackoverflow.com/questions/5093073/how-to-load-views-on-an-added-devise-module-for-a-custom-registration-controller
Was attempting to use redirect_to 'path'... Wanted to clarify the wiki.
Updated How To: Redirect after registration (sign up) (markdown)