Specify supportedStages for User Interactive Auth (#10975)
This commit is contained in:
parent
2571f54e8b
commit
269a348177
1 changed files with 11 additions and 0 deletions
|
@ -119,6 +119,17 @@ export default class InteractiveAuthComponent<T> extends React.Component<Interac
|
||||||
clientSecret: this.props.clientSecret,
|
clientSecret: this.props.clientSecret,
|
||||||
emailSid: this.props.emailSid,
|
emailSid: this.props.emailSid,
|
||||||
requestEmailToken: this.requestEmailToken,
|
requestEmailToken: this.requestEmailToken,
|
||||||
|
supportedStages: [
|
||||||
|
AuthType.Password,
|
||||||
|
AuthType.Recaptcha,
|
||||||
|
AuthType.Email,
|
||||||
|
AuthType.Msisdn,
|
||||||
|
AuthType.Terms,
|
||||||
|
AuthType.RegistrationToken,
|
||||||
|
AuthType.UnstableRegistrationToken,
|
||||||
|
AuthType.Sso,
|
||||||
|
AuthType.SsoUnstable,
|
||||||
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
if (this.props.poll) {
|
if (this.props.poll) {
|
||||||
|
|
Loading…
Reference in a new issue