Module: ActiveAdmin::BatchActions::Controller
- Defined in:
- lib/active_admin/batch_actions/controller.rb
Instance Method Summary collapse
-
#batch_action ⇒ Object
Controller action that is called when submitting the batch action form.
Instance Method Details
#batch_action ⇒ Object
Controller action that is called when submitting the batch action form
6 7 8 9 10 11 12 13 14 |
# File 'lib/active_admin/batch_actions/controller.rb', line 6 def batch_action if action_present? selection = params[:collection_selection] || [] inputs = JSON.parse(params[:batch_action_inputs].presence || "{}") instance_exec selection, inputs, ¤t_batch_action.block else raise "Couldn't find batch action \"#{params[:batch_action]}\"" end end |