My application in many action use render :nothing => true. I want be DRY. How can I say to rails by default render nothing for a particular controller?
My application in many action use render :nothing => true . I want be
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This might do what you need:
before_filterand notafter_filterbecause the latter is executed after the action finished, which means, after the content was rendered.Source: http://ap.rubyonrails.org/classes/ActionController/Filters/ClassMethods.html#M000128