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

50 lines
1.4 KiB
PHP

<?php
return [
/*
|---------------------------------------------------------------------------
| E-mail options
|---------------------------------------------------------------------------
|
*/
'email' => [
/*
|-----------------------------------------------------------------------
| Email View Type
|-----------------------------------------------------------------------
|
| This option defines the email view type.
|
| Supported: "default", "markdown"
|
*/
'type' => 'default',
/*
|-----------------------------------------------------------------------
| Custom view name
|-----------------------------------------------------------------------
|
| This option defines a custom view name.
|
*/
'view' => null,
],
/*
|---------------------------------------------------------------------------
| Log the user in after verification
|---------------------------------------------------------------------------
|
| This option defines if the user should be logged in after verification.
| USE WITH CAUTION as it may introduce security issues in your app.
| By default Laravel log in a new registered user.
|
| Supported: (bool) "true", "false"
|
*/
'auto-login' => false,
];