mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 01:44:45 +02:00
18 lines
217 B
PHP
18 lines
217 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'lockout' => [
|
|
'time' => 2,
|
|
'attempts' => 3,
|
|
],
|
|
|
|
'guards' => [
|
|
'api' => [
|
|
'driver' => 'token',
|
|
'provider' => 'users',
|
|
],
|
|
],
|
|
|
|
];
|