Skip to content

Commit

Permalink
make content accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
AnuradhaSK committed Dec 17, 2023
1 parent d74b767 commit 8a576bf
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified en/asgardeo/docs/assets/img/guides/mfa/one-factor-auth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set product_name = "Asgardeo" %}
{% set product_url_format = "https://api.asgardeo.io/t/{organization_name}" %}
{% set patch_user_path = "apis/scim2/#tag/Groups-Endpoint/operation/patchGroup" %}
{% set patch_me_path = "apis/scim2/#tag/Me-Endpoint/operation/patchUserMe" %}
{% include "../../../../../includes/guides/authentication/mfa/user-preferred-mfa-login.md" %}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set product_name = "WSO2 Identity Server" %}
{% set product_url_format = "https://localhost:9443/t/{tenant-domain}" %}
{% set patch_user_path = "apis/scim2-rest-apis/#tag/Users-Endpoint/operation/patchUser" %}
{% set patch_me_path = "apis/scim2-rest-apis/#tag/Me-Endpoint/operation/patchUserMe" %}
{% include "../../../../../../includes/guides/authentication/mfa/user-preferred-mfa-login.md" %}
42 changes: 21 additions & 21 deletions en/includes/guides/authentication/mfa/user-preferred-mfa-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ To set preferred MFA options for users:
</tr>-->
</table>

2. Set the preferred MFA option for each user using a [SCIM2/Me patch API]({{base_path}}/{{ patch_user_path }}) call.
2. Set the preferred MFA option for each user using a [SCIM2/Me patch API]({{base_path}}/{{ patch_me_path }}) call.

!!! note
Update the `preferredMFAOption.authenticationOption` value for each user according to their choice in step 1.
Expand All @@ -95,36 +95,36 @@ To set preferred MFA options for users:
--data '
{"Operations":[
{
"op":"replace","value":
{"name":
{"givenName":"liya"}
"op": "replace",
"value": {
"name": {
"givenName":"liya"
}
}
},
{
"op":"replace",
"value":
{
"name":
{"familyName":"shaggy"}
"op": "replace",
"value": {
"name": {
"familyName":"shaggy"
}
}
},
{
"op":
"replace",
"value":{"phoneNumbers":[]}
"op": "replace",
"value": {
"phoneNumbers":[]
}
},
{
"op":
"replace",
"value":
{"urn:scim:wso2:schema":
{
"country":"Andorra",
"dateOfBirth":"",
"preferredMFAOption":"
{\"authenticationOption\":\"email-otp-authenticator\"}"
"op": "replace",
"value": {
"urn:scim:wso2:schema": {
"preferredMFAOption": {
"authenticationOption": "email-otp-authenticator"
}
}
}
}
],
"schemas":[
Expand Down

0 comments on commit 8a576bf

Please sign in to comment.