Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
#8216
Signed-off-by: YuriyZ <yzabrovarniy@gmail.com>
  • Loading branch information
yuriyz committed Apr 18, 2024
1 parent cfcb123 commit d5a9794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/admin/auth-server/openid-features/acrs.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ must re-authenticate to continue. If the user succeeds, a new session with a new
## ACR mappings (aliases)

There is `acrMappings` AS configuration property which allows to specify aliases for acrs.
`acrMappings` contains simply map in key-value form.
`acrMappings` contains simple map in key-value form.

Lets say RP sends request with `acr_values=loginWithOtpCheck`. If `acrMappings` contains mapping "loginWithOtpCheck":"otp" then
AS will map `loginWithOtpCheck` to `otp` and will use `acr_values=otp`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ public class AppConfiguration implements Configuration {
@DocProperty(description = "Enable/Disable usage of highest level script in case ACR script does not exist", defaultValue = "false")
private Boolean useHighestLevelScriptIfAcrScriptNotFound;

@DocProperty(description = "The acr mappings. When AS meets key-value in map, it tries to replace key with value.")
@DocProperty(description = "The acr mappings. When AS meets key-value in map, it tries to replace 'key' with 'value' as very first thing and use that 'value' in further processing.")
private Map<String, String> acrMappings;

@DocProperty(description = "Boolean value specifying whether to enable user authentication filters")
Expand Down

0 comments on commit d5a9794

Please sign in to comment.