You are here

public static property AuthenticationType::$OTP_OVER_WHATSAPP in Google Authenticator / 2 Factor Authentication - 2FA 8.2

File

src/AuthenticationType.php, line 51
Contains Authentication type class.

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $OTP_OVER_WHATSAPP = array(
  'id' => 'otp-over-whatsapp',
  'name' => 'OTP Over WhatsApp',
  'code' => 'WHATSAPP',
  'description' => 'You will receive a one time passcode via WhatsApp message on your phone. You have to enter the otp to login. Supported in Smartphones, Laptops.',
  'supported-for' => array(
    'Smartphones',
  ),
  'challenge' => TRUE,
  'oob' => FALSE,
  'test-route' => 'miniorange_2fa.test_otp_over_sms_and_email',
  'configure-route' => 'miniorange_2fa.configure_otp_over_sms_authentication',
);