Files
firefly-iii/app/config/auth.php

17 lines
325 B
PHP
Raw Normal View History

2014-06-28 09:41:44 +02:00
<?php
return [
'driver' => 'eloquent',
'model' => 'User',
'table' => 'users',
'reminder' => [
'email' => 'emails.auth.reminder',
'table' => 'password_reminders',
'expire' => 60,
],
2014-06-30 10:47:14 +02:00
'verify_mail' => false,
'verify_reset' => true,
'allow_register' => true
];