|
|
@ -78,6 +78,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| Regex pattern for valid chars for username |
|
|
|
| Regex pattern for valid chars for username |
|
|
|
| (default: '^[a-zA-Z0-9]{3,}$') |
|
|
|
| (default: '^[a-zA-Z0-9]{3,}$') |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $userActiveTime = '5 minutes'; |
|
|
|
public $userActiveTime = '5 minutes'; |
|
|
|
public $userVerification = false; |
|
|
|
public $userVerification = false; |
|
|
@ -109,6 +110,7 @@ class Aauth extends BaseConfig |
|
|
|
| password_hash options array |
|
|
|
| password_hash options array |
|
|
|
| for details see http://php.net/manual/en/function.password-hash.php |
|
|
|
| for details see http://php.net/manual/en/function.password-hash.php |
|
|
|
| (default: []) |
|
|
|
| (default: []) |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $passwordMin = 8; |
|
|
|
public $passwordMin = 8; |
|
|
|
public $passwordMax = 32; |
|
|
|
public $passwordMax = 32; |
|
|
@ -173,6 +175,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| Enables removing login attempt after successful login |
|
|
|
| Enables removing login attempt after successful login |
|
|
|
| (default: true) |
|
|
|
| (default: true) |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $loginRemember = '+14 days'; |
|
|
|
public $loginRemember = '+14 days'; |
|
|
|
public $loginRememberCookie = 'remember'; |
|
|
|
public $loginRememberCookie = 'remember'; |
|
|
@ -206,6 +209,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| Array of Config for CI's Email Library |
|
|
|
| Array of Config for CI's Email Library |
|
|
|
| (default: []) |
|
|
|
| (default: []) |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $emailFrom = 'sys@xpresspaper.eu'; |
|
|
|
public $emailFrom = 'sys@xpresspaper.eu'; |
|
|
|
public $emailFromName = 'Aauth v3'; |
|
|
|
public $emailFromName = 'Aauth v3'; |
|
|
@ -240,6 +244,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| Redirect path to TOTP Verification page |
|
|
|
| Redirect path to TOTP Verification page |
|
|
|
| (default: '/account/twofactor_verification/index') |
|
|
|
| (default: '/account/twofactor_verification/index') |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $totpEnabled = false; |
|
|
|
public $totpEnabled = false; |
|
|
|
public $totpOnIpChange = false; |
|
|
|
public $totpOnIpChange = false; |
|
|
@ -279,6 +284,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| The CAPTCHA secretKey |
|
|
|
| The CAPTCHA secretKey |
|
|
|
| (default: '') |
|
|
|
| (default: '') |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $captchaEnabled = false; |
|
|
|
public $captchaEnabled = false; |
|
|
|
public $captchaType = 'recaptcha'; |
|
|
|
public $captchaType = 'recaptcha'; |
|
|
@ -305,6 +311,7 @@ class Aauth extends BaseConfig |
|
|
|
| |
|
|
|
| |
|
|
|
| Name of Public group , people who not logged in |
|
|
|
| Name of Public group , people who not logged in |
|
|
|
| (default: 'public') |
|
|
|
| (default: 'public') |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $groupAdmin = 'admin'; |
|
|
|
public $groupAdmin = 'admin'; |
|
|
|
public $groupDefault = 'default'; |
|
|
|
public $groupDefault = 'default'; |
|
|
@ -419,6 +426,7 @@ class Aauth extends BaseConfig |
|
|
|
| Enables soft delete for Perms |
|
|
|
| Enables soft delete for Perms |
|
|
|
| If this is enabled, it simply set a flag when rows are deleted. |
|
|
|
| If this is enabled, it simply set a flag when rows are deleted. |
|
|
|
| (default: false) |
|
|
|
| (default: false) |
|
|
|
|
|
|
|
| |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public $dbProfile = 'default'; |
|
|
|
public $dbProfile = 'default'; |
|
|
|
public $dbReturnType = 'array'; |
|
|
|
public $dbReturnType = 'array'; |
|
|
|