Update panel to send correct service option configuration to the daemon.
This commit is contained in:
parent
1a5a1f82e7
commit
38075c6b9f
12 changed files with 282 additions and 83 deletions
|
@ -6,4 +6,9 @@
|
|||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
Route::get('/authenticate/{token}', 'ValidateKeyController@index')->name('post.api.remote.authenticate');
|
||||
Route::get('/authenticate/{token}', 'ValidateKeyController@index')->name('api.remote.authenticate');
|
||||
|
||||
Route::group(['prefix' => '/options'], function () {
|
||||
Route::get('/', 'OptionRetrievalController@index')->name('api.remote.services');
|
||||
Route::get('/{uuid}', 'OptionRetrievalController@download')->name('api.remote.services.download');
|
||||
});
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
* This software is licensed under the terms of the MIT license.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
Route::get('/services', 'ServiceController@listServices')->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