Documentation Index
Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Interface defining the available methods and properties for the mfa-login-options screen
export interface MfaLoginOptionsMembers extends BaseMembers {
screen: ScreenMembersOnMfaLoginOptions;
/**
* Continues the login process with the selected MFA factor
* @param payload The options containing the selected factor
* @example
* ```typescript
* const mfaLoginOptions = new MfaLoginOptions();
* await mfaLoginOptions.enroll({
* action: 'push-notification'
* });
* ```
*/
enroll(payload: LoginEnrollOptions): Promise<void>;
/**
* Returns to the previous screen in the authentication flow
* @param payload Optional custom options
* @example
* ```typescript
* const mfaLoginOptions = new MfaLoginOptions();
* await mfaLoginOptions.returnToPrevious();
* ```
*/
returnToPrevious(payload?: CustomOptions): Promise<void>;
}
Properties
Methods
Continues the login process with the selected MFA factorconst mfaLoginOptions = new MfaLoginOptions();
await mfaLoginOptions.enroll({
action: 'push-notification'
});
The options containing the selected factorPropertiesThe action indicating which factor to use for login
Returns to the previous screen in the authentication flowconst mfaLoginOptions = new MfaLoginOptions();
await mfaLoginOptions.returnToPrevious();