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

Loading…
Cancel
Save