Enabled sending netmails to upstream areafix/filefix

This commit is contained in:
2023-08-03 17:30:52 +10:00
parent f281575b15
commit a87cf875e4
6 changed files with 209 additions and 4 deletions

View File

@@ -77,6 +77,9 @@ Route::middleware(['auth','verified','activeuser'])->group(function () {
->where('o','[0-9]+');
Route::post('ftn/system/addsession/{o}',[SystemController::class,'add_session'])
->where('o','[0-9]+');
Route::match(['get','post'],'ftn/system/areafix/{o}/{zo}',[SystemController::class,'areafix'])
->where('o','[0-9]+')
->where('zo','[0-9]+');
Route::get('ftn/system/deladdress/{o}',[SystemController::class,'del_address'])
->where('o','[0-9]+');
Route::get('ftn/system/demaddress/{o}',[SystemController::class,'dem_address'])