module ActionComponent::Callbacks::ClassMethods

Public Instance Methods

after_render(*methods) click to toggle source
# File lib/action_component/callbacks.rb, line 17
def after_render(*methods)
  self.after_render_callback_methods += methods
end
before_render(*methods) click to toggle source
# File lib/action_component/callbacks.rb, line 13
def before_render(*methods)
  self.before_render_callback_methods += methods
end