Module: ActiveResponse::Controller::Core::ClassMethods
- Defined in:
- lib/active_response/controller/core.rb
Instance Method Summary collapse
Instance Method Details
#active_response(*actions) ⇒ Object
13 14 15 16 |
# File 'lib/active_response/controller/core.rb', line 13 def active_response(*actions) active_response(:create, :destroy, :edit, :index, :new, :show, :update) if actions.include?(:crud) actions.without(:crud).each { |action| define_active_response_action(action) } end |