68eff40753
* Replace importer with AJAX powered; better error handling #443 * Formatting * Fix command line importer
10 lines
330 B
PHP
10 lines
330 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', 'ImporterController@index')->name('index');
|
|
Route::post('/config', 'ImporterController@config')->name('config');
|
|
Route::post('/run', 'ImporterController@run')->middleware('api')->name('run');
|
|
|
|
Route::post('/complete', 'ImporterController@complete')->name('complete');
|