openclassify/addons/default/anomaly/users-module/resources/config/config.php
2024-08-18 18:40:44 +03:00

39 lines
1.1 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Login Field
|--------------------------------------------------------------------------
|
| Specify whether to use the 'email' or 'username' for logging in.
|
*/
'login' => env('LOGIN', 'email'),
/*
|--------------------------------------------------------------------------
| Activation Mode
|--------------------------------------------------------------------------
|
| How do you want to activate users? Available options are:
|
| 'email' - Send an activation email to the user.
| 'manual' - Require an admin to manually activate the user.
| 'automatic' - Automatically activate the user when they register.
|
*/
'activation_mode' => env('ACTIVATION_MODE', 'email'),
/*
|--------------------------------------------------------------------------
| Permissions
|--------------------------------------------------------------------------
|
| Define additional permissions here.
|
*/
'permissions' => [],
];