Class implementing the mfa-push-list screen functionality
import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';
const mfaPushList = new MfaPushList();
await mfaPushList.selectMfaPushDevice({ deviceIndex: 0 });
Constructors
Properties
Methods
Retrieves the array of transaction errors from the context, or an empty array if none exist.An array of error objects from the transaction context.
Navigates back to the previous screen.import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';
const mfaPushList = new MfaPushList();
await mfaPushList.goBack();
Optional custom options to include with the request.
Selects a registered device from the list to initiate MFA push.import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';
const mfaPushList = new MfaPushList();
await mfaPushList.selectMfaPushDevice({ deviceIndex: 0 });