Files
opensem/config/authentication-log.php
Ludovic CANDELLIER 36267139a1 [WIP] Setup of skeleton
2020-03-25 00:08:27 +01:00

29 lines
738 B
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Notify New Device
|--------------------------------------------------------------------------
|
| Here you define whether to receive notifications when logging from a new device.
|
*/
'notify' => env('AUTHENTICATION_LOG_NOTIFY', true),
/*
|--------------------------------------------------------------------------
| Old Logs Clear
|--------------------------------------------------------------------------
|
| When the clean-command is executed, all authentication logs older than
| the number of days specified here will be deleted.
|
*/
'older' => 365,
];