public Method

ClassMethods.append_after_filter(*filters, &block)

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

Source Code

# File action_controller/filters.rb, line 265
def append_after_filter(*filters, &block)
  append_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.