1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/routes/api.php

10 lines
329 B
PHP
Raw Normal View History

<?php
Route::group(['middleware' => 'auth.basic'], function() {
Route::patch('/update-files', 'FileParserController@receive');
Route::post('/import', 'ExportImportController@import');
Route::get('/export', 'ExportImportController@export');
});
Route::get('/last-fetched', 'FileParserController@lastFetched');