blob: be3c08743e6ef43c532138005c38f1af030c2863 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CsvImport < Import
validates_presence_of :objectid_prefix
option :objectid_prefix
def import_options
super.merge(:format => :csv, :objectid_prefix => objectid_prefix)
end
end
|