Is there a way for me to pass an URL to the Devise login page, so that when a user logs in, he/she is redirected back to that URL?
Something like:
/login?passthru=/somethingawesome
Or is it better to set a session variable?
|
Is there a way for me to pass an URL to the Devise login page, so that when a user logs in, he/she is redirected back to that URL? Something like:
Or is it better to set a session variable? |
||||
|
|
|
Have a method to store the redirect location and a method to access the stored redirect location in
Override the after_sign_in_path_for method to redirect the user to the desired location:
Devise Wiki: How To: Redirect to a specific page on successful sign in out By the way, the above method is untested and you should test it. |
|||
|
|
|
Here's what I did 1) In your template set up your sign_in login as follows: Im passing request.fullpath here as an example you can replace this with whatever you want.
2) Next modify ApplicationController as follows: we add a before_filter which sets passthru in the session if it exists. Then we override after_sign_in_path_for to look in the session for passthru. If its not there it will default to root_path. As long as you handle logins with params consistently everywhere this should work. Although it might need some tweaking.
|
|||
|
|