mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
fd2ed4676b
* Add route GET /api/last-fetched * refactor
8 lines
208 B
PHP
8 lines
208 B
PHP
<?php
|
|
|
|
Route::group(['middleware' => 'auth.basic'], function() {
|
|
Route::patch('/update-files', 'FileParserController@receive');
|
|
});
|
|
|
|
Route::get('/last-fetched', 'FileParserController@lastFetched');
|