class ActiveAdmin::BatchActions::BatchActionSelector

def batch_actions_to_display

Return the set of batch actions that should be displayed
def batch_actions_to_display
  @batch_actions.select do |batch_action|
    call_method_or_proc_on(self, batch_action.display_if_block)
  end
end