Rails 3 has a nice feature to save writing flashes on a separate line:

redirect_to @product, :notice => "Successfully created product."

It would be great with respond_with, but not supported. Any way to override respond_with to take an optional flash hash?

link|improve this question

respond_with made so because it will output on different types of content. For example, what form should have flash message in XML or JSON formats? Also, you could use render and redirect_to inside respond_with block. See docs. – Mark Guk Dec 23 '11 at 12:49
1  
I have a custom after_filter which puts the flash in a response header (that can be rendered in response to XHR). – mahemoff Dec 23 '11 at 13:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.