In a Rails app sometimes you use a redirect in an action...
redirect_to :controller => 'sessions', :action => 'new'
I wonder if that's bad though because it sends back a 302 status to the browser and then the browser makes a whole new request. It's an additional back-and-forth.
Would it be better to just render a template?
render :template => 'users/new'