Organisation registration process implemented with configurable approval workflow
This commit is contained in:
26
config/default.php
Normal file
26
config/default.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* AVSDev UF Organisations (https://avsdev.uk)
|
||||
*
|
||||
* @link https://git.avsdev.uk/avsdev/sprinkle-organisations
|
||||
* @license https://git.avsdev.uk/avsdev/sprinkle-organisations/blob/master/LICENSE.md (LGPL-3.0 License)
|
||||
*/
|
||||
|
||||
/*
|
||||
* Configuration file for the UF Organisations
|
||||
*
|
||||
* Sensitive credentials should be stored in an environment variable or your .env file.
|
||||
* Database password: DB_PASSWORD
|
||||
* SMTP server password: SMTP_PASSWORD
|
||||
*/
|
||||
return [
|
||||
'organisation' => [
|
||||
'registration' => [
|
||||
'require_approval' => true,
|
||||
],
|
||||
'approval' => [
|
||||
'timeout' => -1,
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user