mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-19 06:43:45 +02:00
Add table to admin/UsersContainer.tsx
This commit is contained in:
@@ -17,6 +17,7 @@ Route::group(['prefix' => '/users'], function () {
|
||||
Route::get('/external/{external_id}', 'Users\ExternalUserController@index')->name('api.application.users.external');
|
||||
|
||||
Route::post('/', 'Users\UserController@store');
|
||||
|
||||
Route::patch('/{user}', 'Users\UserController@update');
|
||||
|
||||
Route::delete('/{user}', 'Users\UserController@delete');
|
||||
@@ -36,6 +37,7 @@ Route::group(['prefix' => '/nodes'], function () {
|
||||
Route::get('/{node}/configuration', 'Nodes\NodeConfigurationController');
|
||||
|
||||
Route::post('/', 'Nodes\NodeController@store');
|
||||
|
||||
Route::patch('/{node}', 'Nodes\NodeController@update');
|
||||
|
||||
Route::delete('/{node}', 'Nodes\NodeController@delete');
|
||||
@@ -60,6 +62,7 @@ Route::group(['prefix' => '/locations'], function () {
|
||||
Route::get('/{location}', 'Locations\LocationController@view')->name('api.application.locations.view');
|
||||
|
||||
Route::post('/', 'Locations\LocationController@store');
|
||||
|
||||
Route::patch('/{location}', 'Locations\LocationController@update');
|
||||
|
||||
Route::delete('/{location}', 'Locations\LocationController@delete');
|
||||
|
||||
Reference in New Issue
Block a user