จัดการบทบาทและสิทธิ์ => API

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-11 18:59:22 +07:00
parent 8a53037137
commit ca0c31fc29
6 changed files with 135 additions and 140 deletions

View file

@ -8,8 +8,8 @@ interface FormUser {
}
interface FormRole {
role: string;
description: string;
roleName: string;
roleDescription: string;
}
interface Roles {

View file

@ -8,12 +8,15 @@ interface Users {
}
interface Roles {
clientRole?: boolean;
composite?: boolean;
containerId?: string;
description: string;
createdAt: string;
createdFullName: string;
createdUserId: string;
id: string;
name: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
roleDescription: string;
roleName: string;
}
interface NodeTree {