Skip to content

Commit db5685d

Browse files
authoredJul 7, 2022
Update AUTH.md
1 parent 3c46197 commit db5685d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎AUTH.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function boot()
2020
$app->make(Request::class),
2121
$config['model'],
2222
$config['fields'] ?? [],
23-
$config['assess_token_field'] ?? null
23+
$config['access_token_field'] ?? null
2424
);
2525
});
2626
}
@@ -55,7 +55,7 @@ reference the provider in the `providers` configuration of your `auth.php` confi
5555
'driver' => 'sso-users',
5656
'model' => App\Models\User::class,
5757
'fields' => ['first_name', 'last_name', 'email'],
58-
'assess_token_field' => 'sso_access_token',
58+
'access_token_field' => 'sso_access_token',
5959
],
6060
],
61-
```
61+
```

0 commit comments

Comments
 (0)
Please sign in to comment.