Fixup merge
This commit is contained in:
parent
8d24e5f168
commit
c8f1335a09
12 changed files with 13 additions and 589 deletions
|
@ -169,11 +169,13 @@ Route::group(['prefix' => 'services'], function () {
|
|||
Route::get('/option/new', 'OptionController@create')->name('admin.services.option.new');
|
||||
Route::get('/option/{id}', 'OptionController@viewConfiguration')->name('admin.services.option.view');
|
||||
Route::get('/option/{id}/variables', 'OptionController@viewVariables')->name('admin.services.option.variables');
|
||||
Route::get('/option/{id}/scripts', 'OptionController@viewScripts')->name('admin.services.option.scripts');
|
||||
|
||||
Route::post('/new', 'ServiceController@store');
|
||||
Route::post('/view/{id}', 'ServiceController@edit');
|
||||
Route::post('/option/new', 'OptionController@store');
|
||||
Route::post('/option/{id}', 'OptionController@editConfiguration');
|
||||
Route::post('/option/{id}/scripts', 'OptionController@updateScripts');
|
||||
Route::post('/option/{id}/variables', 'OptionController@createVariable');
|
||||
Route::post('/option/{id}/variables/{variable}', 'OptionController@editVariable')->name('admin.services.option.variables.edit');
|
||||
|
||||
|
|
|
@ -25,3 +25,4 @@ Route::get('/services', 'ServiceController@list')->name('daemon.services');
|
|||
Route::get('/services/pull/{service}/{file}', 'ServiceController@pull')->name('daemon.pull');
|
||||
Route::get('/packs/pull/{uuid}', 'PackController@pull')->name('daemon.pack.pull');
|
||||
Route::get('/packs/pull/{uuid}/hash', 'PackController@hash')->name('daemon.pack.hash');
|
||||
Route::get('/details/option/{server}', 'OptionController@details')->name('daemon.option.details');
|
||||
|
|
Reference in a new issue