Is it possible to redirect from one controller to another using POST request? redirect_to supports only GET. I found something called “post_via_redirect”, but it seems that it was deprecated in Rails 3.
Is it possible to redirect from one controller to another using POST request? redirect_to
Share
I think you’re looking for this question.
The short answer is no, there isn’t a way to do this.
post_via_redirectis one of the methods for integration tests, and will not help here.