User Devices Widget
Definition
The User Devices Widget allows to list, rename or delete devices.
Tips
To access the User DevicesWidget, you must configure the Widget on a Feature with an object kind set to IDENTITY.
Configuration
Tenant properties
The BUM service communicates with the Credential Gateway Service to list/update/delete the user devices. The location and system account used to access this service must be configured as tenant properties (not settings).
Property name | Type | Description |
|---|---|---|
citadel.bum.cgw.tenants.<tenant>.backendBaseUrl |
| The base URL of the CGW backend service. |
citadel.bum.cgw.tenants.<tenant>.login |
| The login of the system account who will authenticate through basic auth on the CGW backend to perform CRUD operation |
citadel.bum.cgw.tenants.<tenant>.password |
| The password of the system account who will authenticate through basic auth on the CGW backend to perform CRUD operation |
Widget properties
When the widget is placed in a non-self feature it can manage the devices of any users in the scope of the feature. These features should hence be reserved for admin purpose.
Properties
Property name | Type | Mandatory | Description | Values (default value in bold) |
|---|---|---|---|---|
canDeleteDevices |
| NO | The user is allowed to rename the device | true, false |
canRenameDevices |
| NO | The user is allowed to delete the device | true, false |
displayDesktopDevices |
| NO | The user can see desktop devices | true, false |
displayMobileDevices |
| NO | The user can see mobile devices | true, false |
Example
<columns>
<column>
<widgets>
<widget id="myUserDevicesManagement" xsi:type="ctdbum:MyUserDevicesManagementWidgetType">
<hidden>false</hidden>
<config>
<bordered>false</bordered>
<title>true</title>
<canDeleteDevices>true</canDeleteDevices>
<canRenameDevices>true</canRenameDevices>
<displayDesktopDevices>true</displayDesktopDevices>
<displayMobileDevices>true</displayMobileDevices>
</config>
</widget>
</widgets>
</column>
</columns>