aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/filters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/filters.rb')
-rw-r--r--actionpack/lib/action_controller/filters.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/actionpack/lib/action_controller/filters.rb b/actionpack/lib/action_controller/filters.rb
index bd5c545dfb..1691f031f8 100644
--- a/actionpack/lib/action_controller/filters.rb
+++ b/actionpack/lib/action_controller/filters.rb
@@ -130,15 +130,15 @@ module ActionController #:nodoc:
# The passed <tt>filters</tt> will be appended to the array of filters that's run _before_ actions
# on this controller are performed.
def append_before_filter(*filters, &block)
- filters << block if block_given?
- append_filter_to_chain("before", filters)
+ filters << block if block_given?
+ append_filter_to_chain("before", filters)
end
# The passed <tt>filters</tt> will be prepended to the array of filters that's run _before_ actions
# on this controller are performed.
def prepend_before_filter(*filters, &block)
- filters << block if block_given?
- prepend_filter_to_chain("before", filters)
+ filters << block if block_given?
+ prepend_filter_to_chain("before", filters)
end
# Short-hand for append_before_filter since that's the most common of the two.
@@ -147,15 +147,15 @@ module ActionController #:nodoc:
# The passed <tt>filters</tt> will be appended to the array of filters that's run _after_ actions
# on this controller are performed.
def append_after_filter(*filters, &block)
- filters << block if block_given?
- append_filter_to_chain("after", filters)
+ filters << block if block_given?
+ append_filter_to_chain("after", filters)
end
# The passed <tt>filters</tt> will be prepended to the array of filters that's run _after_ actions
# on this controller are performed.
def prepend_after_filter(*filters, &block)
- filters << block if block_given?
- prepend_filter_to_chain("after", filters)
+ filters << block if block_given?
+ prepend_filter_to_chain("after", filters)
end
# Short-hand for append_after_filter since that's the most common of the two.