From 13a7fe1f36715f667298461fcddaf69a71ff39da Mon Sep 17 00:00:00 2001 From: philipp lang Date: Fri, 25 Oct 2024 00:38:35 +0200 Subject: [PATCH] Lint --- routes/web.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/routes/web.php b/routes/web.php index a103aa71..21d0ac81 100644 --- a/routes/web.php +++ b/routes/web.php @@ -61,8 +61,6 @@ use App\Maildispatcher\Actions\EditAction; use App\Maildispatcher\Actions\IndexAction; use App\Maildispatcher\Actions\StoreAction as MaildispatcherStoreAction; use App\Maildispatcher\Actions\UpdateAction as MaildispatcherUpdateAction; -use App\Mailgateway\Actions\StoreAction; -use App\Mailgateway\Actions\UpdateAction; use App\Member\Actions\ExportAction; use App\Member\Actions\MemberDeleteAction; use App\Member\Actions\MemberResyncAction; @@ -112,8 +110,6 @@ Route::group(['middleware' => 'auth:web'], function (): void { Route::post('/contribution-validate', ContributionValidateAction::class)->name('contribution.validate'); // ----------------------------------- mail ------------------------------------ - Route::post('/api/mailgateway', StoreAction::class)->name('mailgateway.store'); - Route::patch('/api/mailgateway/{mailgateway}', UpdateAction::class)->name('mailgateway.update'); Route::get('/maildispatcher', IndexAction::class)->name('maildispatcher.index'); Route::get('/maildispatcher/create', CreateAction::class)->name('maildispatcher.create'); Route::get('/maildispatcher/{maildispatcher}', EditAction::class)->name('maildispatcher.edit');