Add link to netmail/echomail when showing packet contents

This commit is contained in:
2024-06-07 13:27:10 +10:00
parent 67377a2012
commit 368198bc77
3 changed files with 11 additions and 9 deletions

View File

@@ -131,7 +131,7 @@ Route::middleware(['auth','verified','activeuser'])->group(function () {
Route::match(['get','post'],'link',[UserController::class,'link']);
Route::post('packet/contents/{o}/{packet}',[HomeController::class,'packet_contents'])
->where('o','[0-9]+')
->where('packet','[[:xdigit:]]+');
->where('packet','[0-9a-zA-Z]+');
Route::match(['get','post'],'user/system/register',[SystemController::class,'register']);
Route::match(['post'],'user/system/link',[SystemController::class,'system_link']);