Remove remaining ftn/ paths, no functional changes

This commit is contained in:
2023-10-05 22:49:57 +11:00
parent b25e6f432c
commit 654e7bd2aa
10 changed files with 17 additions and 27 deletions

View File

@@ -65,11 +65,11 @@ Route::middleware(['auth','verified','activeuser'])->group(function () {
Route::match(['get','post'],'domain/addedit/{o?}',[DomainController::class,'add_edit'])
->where('o','[0-9]+');
Route::get('ftn/echoarea',[EchoareaController::class,'home']);
Route::match(['get','post'],'ftn/echoarea/addedit/{o?}',[EchoareaController::class,'add_edit'])
Route::view('echoarea','echoarea.home');
Route::match(['get','post'],'echoarea/addedit/{o?}',[EchoareaController::class,'add_edit'])
->where('o','[0-9]+');
Route::get('ftn/filearea',[FileareaController::class,'home']);
Route::match(['get','post'],'ftn/filearea/addedit/{o?}',[FileareaController::class,'add_edit'])
Route::view('filearea','filearea.home');
Route::match(['get','post'],'filearea/addedit/{o?}',[FileareaController::class,'add_edit'])
->where('o','[0-9]+');
/* SYSTEM PATHS */