From 79d92a65674a5db281752a6418942124f1b6f9dd Mon Sep 17 00:00:00 2001 From: philipp lang Date: Sat, 21 Jun 2025 00:01:10 +0200 Subject: [PATCH] Lint --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index 0c8c488a..65846888 100644 --- a/routes/web.php +++ b/routes/web.php @@ -34,6 +34,7 @@ use App\Form\Actions\FormtemplateStoreAction; use App\Form\Actions\FormtemplateUpdateAction; use App\Form\Actions\FormUpdateAction; use App\Form\Actions\FormUpdateMetaAction; +use App\Form\Actions\GenerateContributionAction; use App\Form\Actions\IsDirtyAction; use App\Form\Actions\ParticipantAssignAction; use App\Form\Actions\ParticipantDestroyAction; @@ -178,6 +179,7 @@ Route::group(['middleware' => 'auth:web'], function (): void { Route::patch('/participant/{participant}', ParticipantUpdateAction::class)->name('participant.update'); Route::post('/form/{form}/participant', ParticipantStoreAction::class)->name('form.participant.store'); Route::post('/form/{form}/copy', FormCopyAction::class)->name('form.copy'); + Route::get('/form/{form}/contribution', GenerateContributionAction::class)->name('form.contribution'); // ------------------------------------ fileshare ----------------------------------- Route::post('/fileshare', FileshareStoreAction::class)->name('fileshare.store');