]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/auth/role-list/role-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / auth / role-list / role-list.component.html
1 <cd-user-tabs></cd-user-tabs>
2
3 <cd-table [data]="roles"
4 columnMode="flex"
5 [columns]="columns"
6 identifier="name"
7 selectionType="single"
8 [hasDetails]="true"
9 (setExpandedRow)="setExpandedRow($event)"
10 (fetchData)="getRoles()"
11 (updateSelection)="updateSelection($event)">
12 <cd-table-actions class="table-actions"
13 [permission]="permission"
14 [selection]="selection"
15 [tableActions]="tableActions">
16 </cd-table-actions>
17 <cd-role-details cdTableDetail
18 [selection]="expandedRow"
19 [scopes]="scopes">
20 </cd-role-details>
21 </cd-table>