Skip to content

Commit

Permalink
Don't rely on App middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Dec 23, 2023
1 parent e8e63a1 commit 3278f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Providers/RouteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public function boot()
);

Route::middlewareGroup('waterhole.web', [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Foundation\Http\Middleware\VerifyCsrfToken::class,
\Waterhole\Http\Middleware\AuthenticateWaterhole::class,
\Waterhole\Http\Middleware\AuthGuard::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
Expand Down

0 comments on commit 3278f5f

Please sign in to comment.