Creating Participation refunds
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use App\Domains\ParticipantRefund\Controllers\RefundPageController;
|
||||
use App\Middleware\IdentifyTenant;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::middleware(IdentifyTenant::class)->group(function () {
|
||||
// Bewusst ohne `auth`: die Seite ist der Link aus der Mail an den Teili.
|
||||
Route::get('/rueckerstattung/{refundToken}', RefundPageController::class);
|
||||
});
|
||||
Reference in New Issue
Block a user