จัดการข้แมูลผู้ใช้ => จัดการสิทธิ์
This commit is contained in:
parent
0d60113fd7
commit
60dd477afe
11 changed files with 2177 additions and 19 deletions
|
|
@ -4,6 +4,16 @@ interface Users {
|
|||
id: string;
|
||||
lastName: string;
|
||||
username: string;
|
||||
roles: Roles;
|
||||
}
|
||||
|
||||
export type { Users };
|
||||
interface Roles {
|
||||
clientRole?: boolean;
|
||||
composite?: boolean;
|
||||
containerId?: string;
|
||||
description: string;
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { Users, Roles };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue