Class implementing the reset-password-mfa-email-challenge screen functionality

Hierarchy

  • BaseContext
    • ResetPasswordMfaEmailChallenge

Implements

Constructors

Properties

branding: BrandingMembers
organization: OrganizationMembers
transaction: TransactionMembers
untrustedData: UntrustedDataMembers
screenIdentifier: string = ScreenIds.RESET_PASSWORD_MFA_EMAIL_CHALLENGE

Methods

  • Continues with the email challenge using the provided code.

    Parameters

    • payload: ContinueOptions

      The options containing the code and rememberDevice flag.

    Returns Promise<void>

    import ResetPasswordMfaEmailChallenge from '@auth0/auth0-acul-js/reset-password-mfa-email-challenge';

    const resetPasswordMfaEmailChallenge = new ResetPasswordMfaEmailChallenge();
    await resetPasswordMfaEmailChallenge.continue({
    code: '123456',
    });