-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add predefined flows for push authenticator #7440
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,4 @@ | |
export { default as EmailOTPSecondFactorLoginSequence } from "./second-factor-email-otp-sequence.json"; | ||
export { default as SMSOTPSecondFactorLoginSequence } from "./second-factor-sms-otp-sequence.json"; | ||
export { default as TOTPSecondFactorLoginSequence } from "./second-factor-totp-sequence.json"; | ||
export { default as PushAuthSecondFactorLoginSequence } from "./second-factor-push-auth-sequence.json"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have we made sure that this can be enabled/disabled conditionally in console UI? |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"steps": [ | ||
{ | ||
"id": 1, | ||
"options": [ | ||
{ | ||
"authenticator": "BasicAuthenticator", | ||
"idp": "LOCAL" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 2, | ||
"options": [ | ||
{ | ||
"authenticator": "push-notification-authenticator", | ||
"idp": "LOCAL" | ||
} | ||
] | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the feature is still disabled in asgardeo, we can avoid this for now. |
||
"steps": [ | ||
{ | ||
"id": 1, | ||
"options": [ | ||
{ | ||
"authenticator": "push-notification-authenticator", | ||
"idp": "LOCAL" | ||
} | ||
] | ||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we add a screenshot of the UI with this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.