Redirecting one controller to another controller

I have two controllers and users. All I want to do is redirect from the user # something to the movie # something. is it possible?

+6
source share
2 answers
redirect_to :controller => 'controllername', :action => 'actionname' 

where controllername is the name of your controller and action is the name of your action. this works for rails 4, but should also work for older rails

+6
source

Source: https://habr.com/ru/post/919427/


All Articles