1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/backend/routes/api.php
Tim Meier fd2ed4676b Add route GET /api/last-fetched (#63)
* Add route GET /api/last-fetched

* refactor
2017-04-03 10:52:07 +02:00

8 lines
208 B
PHP

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