Skip to content

Commit 2c5f6ba

Browse files
updated format
1 parent 3d196bb commit 2c5f6ba

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/azure-scim.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,11 @@ For example we can set Constant association “Guest” for `urn:ietf:params:sci
100100

101101
Or, can create association using the Expression like this ,
102102

103-
`IIF(SingleAppRoleAssignment([appRoleAssignments])="Admin", "Admin"`,
104-
`IIF(SingleAppRoleAssignment([appRoleAssignments])="Guest", "Guest"`,
105-
`IIF(SingleAppRoleAssignment([appRoleAssignments])="User", "User", "User")))`
103+
```javascript
104+
IIF(SingleAppRoleAssignment([appRoleAssignments])="Admin", "Admin",
105+
IIF(SingleAppRoleAssignment([appRoleAssignments])="Guest", "Guest",
106+
IIF(SingleAppRoleAssignment([appRoleAssignments])="User", "User", "User")))
107+
```
106108

107109
In the above example we are using the appRoleAssignments attribute of microsoft user to set string value.
108110

0 commit comments

Comments
 (0)