Browse Source

renamed linkTotp to totpLink

v3-dev
REJack 6 years ago
parent
commit
de62c76a00
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 2
      CHANGES.md
  2. 11
      app/Config/Aauth.php

2
CHANGES.md

@ -53,7 +53,7 @@
- no_permission => linkNoPermission
- reset_password_link => linkResetPassword
- verification_link => linkVerification
- totp_two_step_login_redirect => linkTotp
- totp_two_step_login_redirect => totpLink
- verification => userVerification
- additional_valid_chars => userRegexPattern
- min => passwordMin

11
app/Config/Aauth.php

@ -49,15 +49,10 @@ class Aauth extends BaseConfig
| Link for verification without site_url or base_url
| (default: '/account/verification/index')
|
| 'linkVerification'
|
| Redirect path to TOTP Verification page
| (default: '/account/twofactor_verification/index')
*/
public $linkNoPermission = false;
public $linkResetPassword = '/account/reset_password/index';
public $linkVerification = '/account/verification/index';
public $linkTotp = '/account/twofactor_verification/index';
/*
|--------------------------------------------------------------------------
@ -234,11 +229,17 @@ class Aauth extends BaseConfig
|
| TOTP required if uses has TOTP secret on login()
| (default: false)
|
| 'totpLink'
|
| Redirect path to TOTP Verification page
| (default: '/account/twofactor_verification/index')
*/
public $totpEnabled = false;
public $totpOnIpChange = false;
public $totpResetPassword = false;
public $totpLogin = false;
public $totpLink = '/account/twofactor_verification/index';
/*
|--------------------------------------------------------------------------

Loading…
Cancel
Save