In my Rails controller, in one method I do a redirect_to to another path (i.e. another method). I want to also pass arguments from the first method, so that the second method can use them. Is that possible?
In my Rails controller, in one method I do a redirect_to to another path
Share
you can do like this
for example:
You can receive @user in your new user page.
or
or