From 7df454d03868d4329915a4d105b067df0d0a924d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 22 Jan 2020 09:41:17 -0600 Subject: [PATCH] update config --- config/airlock.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config/airlock.php b/config/airlock.php index c4bce306..47ecc99c 100644 --- a/config/airlock.php +++ b/config/airlock.php @@ -30,4 +30,19 @@ 'expiration' => null, + /* + |-------------------------------------------------------------------------- + | Airlock Middleware + |-------------------------------------------------------------------------- + | + | When authenticating your first-party SPA with Airlock you may need to + | customize some of the middleware Airlock uses while processing the + | request. You may change the middleware listed below as required. + | + */ + + 'middleware' => [ + 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, + ], + ];