mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Port Validation Page to Laravel (#13921)
* Revamp validate web page to load page then validate, instead of validate then load page * style fixes * lint cleanups * fixes * translations and a couple fixes * style fixes * move result serialization into the class.
This commit is contained in:
@@ -87,6 +87,8 @@ Route::group(['middleware' => ['auth'], 'guard' => 'auth'], function () {
|
||||
Route::post('plugin/settings/{plugin:plugin_name}', 'PluginSettingsController@update')->name('plugin.update');
|
||||
|
||||
Route::resource('port-groups', 'PortGroupController');
|
||||
Route::get('validate', [\App\Http\Controllers\ValidateController::class, 'index'])->name('validate');
|
||||
Route::get('validate/results', [\App\Http\Controllers\ValidateController::class, 'runValidation'])->name('validate.results');
|
||||
});
|
||||
|
||||
Route::get('plugin', 'PluginLegacyController@redirect');
|
||||
|
Reference in New Issue
Block a user