mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 22:33:44 +02:00
Move API to use JSON:API standards and fractal serializer
Makes the data slightly more complex, but forces a standard and can always be changed down the road simply by changing the default serializer.
This commit is contained in:
@@ -24,11 +24,16 @@
|
||||
|
||||
Route::get('/', 'CoreController@index')->name('api.admin');
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Location Controller Routes
|
||||
| Server Controller Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Endpoint: /api/admin
|
||||
| Endpoint: /api/admin/servers
|
||||
|
|
||||
*/
|
||||
Route::group(['prefix' => '/servers'], function () {
|
||||
Route::get('/', 'ServerController@index')->name('api.admin.servers.list');
|
||||
Route::get('/{id}', 'ServerController@view')->name('api.admin.servers.view');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user