[WIP] Setup of skeleton
This commit is contained in:
49
config/user-verification.php
Normal file
49
config/user-verification.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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,
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user