Class: ActionController::Filters::Filter
- Inherits:
-
ActiveSupport::Callbacks::Callback
- Object
- ActiveSupport::Callbacks::Callback
- ActionController::Filters::Filter
show all
- Defined in:
- lib/action_controller/filters.rb
Overview
Instance Method Summary
collapse
Instance Method Details
#after? ⇒ Boolean
350
351
352
|
# File 'lib/action_controller/filters.rb', line 350
def after?
self.class == AfterFilter
end
|
#around? ⇒ Boolean
354
355
356
|
# File 'lib/action_controller/filters.rb', line 354
def around?
self.class == AroundFilter
end
|
#before? ⇒ Boolean
346
347
348
|
# File 'lib/action_controller/filters.rb', line 346
def before?
self.class == BeforeFilter
end
|