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
<code/>and<pre/>for code samples.