1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Fixed failing tests caused by auth changes

This commit is contained in:
Dan Brown
2020-02-02 12:00:41 +00:00
parent e743cd3f60
commit 5d08ec3cef
4 changed files with 71 additions and 88 deletions

View File

@@ -51,7 +51,7 @@ return [
// mechanisms used by this application to persist your user's data.
'providers' => [
'users' => [
'driver' => env('AUTH_METHOD', 'standard') === 'standard' ? 'eloquent' : env('AUTH_METHOD'),
'driver' => 'eloquent',
'model' => \BookStack\Auth\User::class,
],
'external' => [