api(app): add NodeInformationController

This commit is contained in:
Matthew Penner 2021-03-23 16:08:17 -06:00
parent c521d37ddd
commit 984a774811
3 changed files with 54 additions and 1 deletions

View file

@ -117,6 +117,7 @@ Route::group(['prefix' => '/nodes'], function () {
Route::get('/deployable', 'Nodes\NodeDeploymentController');
Route::get('/{node}', 'Nodes\NodeController@view')->name('api.application.nodes.view');
Route::get('/{node}/configuration', 'Nodes\NodeConfigurationController');
Route::get('/{node}/information', 'Nodes\NodeInformationController');
Route::post('/', 'Nodes\NodeController@store');