public Method

ClassMethods.prepend_after_filter(*filters, &block)

The passed filters will be prepended to the array of filters that run after actions on this controller are performed.

Source Code

# File action_controller/filters.rb, line 271
def prepend_after_filter(*filters, &block)
  prepend_filter_to_chain(filters, :after, &block)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.