Skip to content

import files without csv headers

Igor Fedoronchuk edited this page Jan 21, 2015 · 1 revision
  ActiveAdmin.register Post  do
        active_admin_import validate: true,
            template_object: ActiveAdminImport::Model.new(
                hint: "file will be imported with such header format: 'body','title','author'",
                csv_headers: ["body","title","author"]
            )
    end