Hi, in my application, when I try to sign up a user and the information is incorrect, devise redirects me from ‘/users/sing_up’ to the ‘/users’ url.
I’d like to change this behavior, so that it stays in the same url (‘/users/sign_up’) when it show the flash messages with the errors.
Also I’d like to change the url of the create action for ‘post – /users/sign_up’ instead of ‘get – /users’, since I’m going to use that for something else.
Thanks in advance.