From eecb1ab5ed550b720ea88e5fda7b2333f1fc59a3 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 20 Jun 2018 09:32:45 +0200 Subject: [PATCH] Add user-verification config --- config/user-verification.php | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 config/user-verification.php diff --git a/config/user-verification.php b/config/user-verification.php new file mode 100644 index 000000000..5c53dc8bd --- /dev/null +++ b/config/user-verification.php @@ -0,0 +1,49 @@ + [ + /* + |----------------------------------------------------------------------- + | 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, + +];