mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-17 04:32:09 -05:00
39 lines
1.1 KiB
PHP
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' => [],
|
|
];
|