Add Register module in src/
- Update REGISTER_* constants definition - Update register template variable name
This commit is contained in:
parent
73a81290ff
commit
0ccb6afdb5
4 changed files with 316 additions and 5 deletions
6
boot.php
6
boot.php
|
@ -103,9 +103,9 @@ define('SSL_POLICY_SELFSIGN', 2);
|
|||
* Registration policies
|
||||
* @{
|
||||
*/
|
||||
define('REGISTER_CLOSED', 0);
|
||||
define('REGISTER_APPROVE', 1);
|
||||
define('REGISTER_OPEN', 2);
|
||||
define('REGISTER_CLOSED', \Friendica\Module\Register::CLOSED);
|
||||
define('REGISTER_APPROVE', \Friendica\Module\Register::APPROVE);
|
||||
define('REGISTER_OPEN', \Friendica\Module\Register::OPEN);
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue