How do I redirect multiple actions to a single action while maintaining DRY? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:52:48Z http://stackoverflow.com/feeds/question/1039000 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1039000/how-do-i-redirect-multiple-actions-to-a-single-action-while-maintaining-dry 1 How do I redirect multiple actions to a single action while maintaining DRY? Daniel Vandersluis 2009-06-24T15:13:14Z 2009-07-08T13:57:49Z <p>I have an <code>OptionsController</code>, which contains an action <code>account</code>. The corresponding view has three forms, which post to three different actions, <code>update_profile</code>, <code>update_user</code> and <code>change_password</code>. Each action runs and then should redirect back to <code>action</code>, where the view is set up again and rendered.</p> <p>I was trying to be DRY and create an <code>after_filter</code> to do the redirect:</p> <pre><code>after_filter( :only =&gt; [:change_password, :update_profile, :update_user] ) do |controller| controller.send(:redirect_to, :action =&gt; :account) end </code></pre> <p>However, this doesn't seem to get called; rather, the action complains that its view cannot be found.</p> <pre><code>Template is missing Missing template options/update_user.erb in view path app/views </code></pre> <p>Is there any way I can do this in a DRY way, or should I just be sticking the redirect_to call in each of the three actions?</p> http://stackoverflow.com/questions/1039000/how-do-i-redirect-multiple-actions-to-a-single-action-while-maintaining-dry/1039067#1039067 8 Answer by Ben Hughes for How do I redirect multiple actions to a single action while maintaining DRY? Ben Hughes 2009-06-24T15:22:06Z 2009-06-24T15:22:06Z <p>just put the <code>redirect_to</code> call in each of the actions. There is a fine line between DRY and unintelligible magic. I feel like trying to do something like an <code>after_filter</code> or anything else that nonobviously shatters the expected behavior of an action is probably too much magic.</p> http://stackoverflow.com/questions/1039000/how-do-i-redirect-multiple-actions-to-a-single-action-while-maintaining-dry/1039300#1039300 1 Answer by Cameron Booth for How do I redirect multiple actions to a single action while maintaining DRY? Cameron Booth 2009-06-24T16:01:01Z 2009-06-24T16:01:01Z <p>It's my understanding that after filters are run <em>after</em> the response is sent to the client, meaning after any render or redirects occur, which is why you're seeing that error. They are intended to let you do things like log data, or benchmark or close connections or any other type of cleanup you have </p>