public function MiniorangeUser::update in Google Authenticator / 2 Factor Authentication - 2FA 8
Same name and namespace in other branches
- 8.2 src/MiniorangeUser.php \Drupal\miniorange_2fa\MiniorangeUser::update()
File
- src/
MiniorangeUser.php, line 28
Class
Namespace
Drupal\miniorange_2faCode
public function update() {
$apiKey = \Drupal::config('miniorange_2fa.settings')
->get('mo_auth_customer_api_key') == '' ? NULL : \Drupal::config('miniorange_2fa.settings')
->get('mo_auth_customer_api_key');
if (is_null($this->customerId) || is_null($apiKey)) {
return FALSE;
}
$usersAPIHandler = new UsersAPIHandler($this->customerId, $apiKey);
$response = $usersAPIHandler
->update($this);
}