mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
22 lines
703 B
PHP
22 lines
703 B
PHP
<?php
|
|
|
|
Route::group(['prefix' => 'api'], function() {
|
|
|
|
Route::post('/login', 'UserController@login');
|
|
Route::get('/logout', 'UserController@logout');
|
|
|
|
Route::get('/items/{orderBy}', 'ItemController@items');
|
|
Route::get('/search-items', 'ItemController@search');
|
|
|
|
Route::group(['middleware' => 'auth'], function() {
|
|
Route::get('/search-tmdb', 'TMDBController@search');
|
|
Route::post('/add', 'ItemController@add');
|
|
Route::patch('/change-rating/{itemID}', 'ItemController@changeRating');
|
|
Route::delete('/remove/{itemID}', 'ItemController@remove');
|
|
});
|
|
});
|
|
|
|
Route::get('/{uri?}', function($uri = null) {
|
|
return view('app');
|
|
})->where('uri', '(.*)');
|