Details for User:

{{ userService.detailsUsername() }}

in Realm {{ userService.selectedUserRealm() }}

@if (userData().editable) {
@if (authService.actionsAllowed(["updateuser", "resolverread"])) { } @if (authService.actionAllowed("deleteuser")) { }
}
@for (col of detailsColumns(); track $index) {
@for (item of col; track item.key) {
{{ item.label }}:
@if (Array.isArray(item.value) && item.value.length > 1) {
    @for (val of item.value; track val) {
  • {{ val }}
  • }
} @else {
{{ item.value }}
} }
}

Custom Attributes:

Attribute Key
@if (keyMode() === "select") { @for (k of keyOptions(); track k) { {{ k }} } @if (hasWildcardKey()) { Custom… } } @else { @if (keyOptions().length > 0) { } }
Attribute Value @if (isValueInput()) { } @else { @for (v of valueOptions(); track v) { {{ v }} } }
@if (userService.userAttributesList().length > 0) {
@for (col of customAttributeColumns(); track $index) {
@for (attr of col; track attr.key) {
{{ attr.key }}:
{{ attr.value || "-" }}
@if (deletableAttributes().includes(attr.key) || deletableAttributes().includes("*")) { } @else {
} }
}
}
Assign Token to User @for (option of tokenDataSource().data; track option) { {{ option["serial"] }} {{ option["tokentype"] }} {{ option["active"] ? "active" : "deactivated" }} {{ option["username"] }} add }