Added gdpr validator
This commit is contained in:
@ -68,6 +68,9 @@ class RegistrationForm extends Model
|
|||||||
// password rules
|
// password rules
|
||||||
'passwordRequired' => ['password', 'required', 'skipOnEmpty' => $this->module->generatePasswords],
|
'passwordRequired' => ['password', 'required', 'skipOnEmpty' => $this->module->generatePasswords],
|
||||||
'passwordLength' => ['password', 'string', 'min' => 6, 'max' => 72],
|
'passwordLength' => ['password', 'string', 'min' => 6, 'max' => 72],
|
||||||
|
'gdprConsent' => ['gdpr_consent', 'required', 'when' => function () {
|
||||||
|
return $this->module->enableGPDRcompliance;
|
||||||
|
}]
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user