Sha256: 3892f8b5d823c6878c79099ce03a7adf860752ca2e9606c4910389f7f3d967a4
Contents?: true
Size: 706 Bytes
Versions: 57
Compression:
Stored size: 706 Bytes
Contents
module ActiveAdmin module BatchActions module Controller # Controller Action that get's called when submitting the batch action form def batch_action if selected_batch_action selected_ids = params[:collection_selection] selected_ids ||= [] instance_exec selected_ids, &selected_batch_action.block else raise "Couldn't find batch action \"#{params[:batch_action]}\"" end end protected def selected_batch_action return unless params[:batch_action].present? active_admin_config.batch_actions.select { |action| action.sym == params[:batch_action].to_sym }.first end end end end
Version data entries
57 entries across 57 versions & 3 rubygems