From db5685d612e1d46d59fd4d4ed6d33cdcb188204b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Preu=C3=9F?= Date: Fri, 8 Jul 2022 00:20:31 +0200 Subject: [PATCH] Update AUTH.md --- AUTH.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AUTH.md b/AUTH.md index 0a1ed10..d0f96cf 100644 --- a/AUTH.md +++ b/AUTH.md @@ -20,7 +20,7 @@ public function boot() $app->make(Request::class), $config['model'], $config['fields'] ?? [], - $config['assess_token_field'] ?? null + $config['access_token_field'] ?? null ); }); } @@ -55,7 +55,7 @@ reference the provider in the `providers` configuration of your `auth.php` confi 'driver' => 'sso-users', 'model' => App\Models\User::class, 'fields' => ['first_name', 'last_name', 'email'], - 'assess_token_field' => 'sso_access_token', + 'access_token_field' => 'sso_access_token', ], ], -``` \ No newline at end of file +```