Removed PlayerCsvBulkLoader as importer

Removed PlayerCsvBulkLoader as model importer class and replaced it with CsvBulkLoader instead.
This commit is contained in:
Myles Beardsmore 2016-01-25 15:26:25 +13:00
parent f131b0d91e
commit b0057c77f0

View File

@ -52,7 +52,7 @@ The simplest way to use [api:CsvBulkLoader] is through a [api:ModelAdmin] interf
'Player'
);
private static $model_importers = array(
'Player' => 'PlayerCsvBulkLoader',
'Player' => 'CsvBulkLoader',
);
private static $url_segment = 'players';
}