mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-03 05:29:53 +09:00
20 lines
349 B
PHP
20 lines
349 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'guards' => [
|
|
'api' => [
|
|
'driver' => 'token',
|
|
'provider' => 'users',
|
|
'hash' => false,
|
|
],
|
|
],
|
|
'providers' => [
|
|
'users' => [
|
|
'driver' => 'eloquent',
|
|
'model' => App\User::class, // Update this to the correct namespace
|
|
],
|
|
],
|
|
|
|
];
|