Browse Source

updated Config/Aauth

- fixed typo
- changed dbSoftDelete to false like docs
v3-dev
REJack 6 years ago
parent
commit
7bffb84bea
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 10
      app/Config/Aauth.php

10
app/Config/Aauth.php

@ -255,8 +255,8 @@ class Aauth extends BaseConfig
|
| CAPTCHA Types
| Available Options:
| - 'recaptcha' (for details see https://www.google.com/captcha/admin)
| - 'hcaptcha' (for details see https://hcaptcha.com/docs)
| - 'recaptcha' (for details see https://www.google.com/captcha/admin)
| - 'hcaptcha' (for details see https://hcaptcha.com/docs)
| (default: 'recaptcha')
|
| 'captchaLoginAttempts'
@ -428,7 +428,7 @@ class Aauth extends BaseConfig
public $dbTablePerms = 'aauth_perms';
public $dbTablePermToUser = 'aauth_perm_to_user';
public $dbTablePermToGroup = 'aauth_perm_to_group';
public $dbSoftDeleteUsers = true;
public $dbSoftDeleteGroups = true;
public $dbSoftDeletePerms = true;
public $dbSoftDeleteUsers = false;
public $dbSoftDeleteGroups = false;
public $dbSoftDeletePerms = false;
}

Loading…
Cancel
Save