Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions modules/ROOT/pages/abac_rls-variables.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,7 @@ ABAC details are sent in a JWT that can be used as a bearer token for cookieless
====

=== Verify the variable assignment

To verify the variable assignment, use the `POST /api/rest/2.0/users/search` API call and check `variable_values` in the user properties in the API response.
To retrieve user information and object properties, you can use the `POST /api/rest/2.0/users/search` API call. To include variable details in the response, set the `include_variable_values` parameter to `true` in the API request body. This allows you to fetch variable values associated with the user in the specified context.

[source,JSON]
----
Expand Down Expand Up @@ -395,7 +394,10 @@ To verify the variable assignment, use the `POST /api/rest/2.0/users/search` API
}
----

To verify the security entitlements, start a user session using the JWT and inspect the generated SQL for your query or visualization.
You can also use the `POST /api/rest/2.0/template/variables/search` API call to xref:variables.adoc#_get_variables[get the list of variables] assigned to a specific user, Org, and Model.

==== Updating variable values for a user
To update variable values for a user, you can use the `/api/rest/2.0/template/variables/update-values` endpoint, or `/api/rest/2.0/auth/token/custom` endpoint when logging in the user. Do not use the `/api/rest/2.0/users/{user_identifier}/update` endpoint, as it does not support updating variable values.

== Verify the entitlements
To verify the entitlements:
Expand Down
16 changes: 8 additions & 8 deletions modules/ROOT/pages/locale-setting.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,30 @@ If you want to set your embedded app view to a specific locale for your applicat
[options="header"]
|====================
| Locale | Language
| `ar-EG` | Egyptian Arabic
| `da-DK` | Dansk
| `de-DE` | Deutsch
| `de-CH` | German (Switzerland)
| `de-CH` | Deutsch (Switzerland)
| `en-AU` | English (Australia)
| `en-CA` | English (Canada)
| `en-DE` | English (Germany)
| `en-IN` | English (India)
| `en-NZ` | English (New Zealand)
| `en-GB` | English (United Kingdom)
| `en-US` | English (United States)
| `en-NZ` | English (New Zealand)
| `es-ES` | Español
| `es-US` | Español (Latinoamérica)
| `es-ES` | Español (España)
| `es-MX` | Spanish (Mexico)
| `fi-FI` | Suomi
| `es-MX` | Español (Mexico)
| `fr-CA` | Français (Canada)
| `fr-FR` | Français (France)
| `ja-JP` | 日本語
| `ko-KR` | 한국어
| `it-IT` | Italiano
| `ja-JP` | Japanese (Japan)/ 日本語
| `nb-NO` | Norsk
| `nl-NL` | Nederland
| `pt-BR` | Português (Brasil)
| `pt-PT` | Português (Portugal)
| `ru-RU` | Russian (Russia)
| `ru-RU` | Pусский (ограниченный выпуск)
| `fi-FI` | Suomi
| `sv-SE` | Svenska
| `zh-CN` | 中文(简体)
| `zh-HANT`| 中文 (繁體)
Expand Down
Loading