feat(FE) : json role

This commit is contained in:
Yusron alamsyah
2026-02-18 08:21:58 +07:00
parent 6c6b842d3b
commit 466dc076c3
29 changed files with 1539 additions and 172 deletions

No files matched your search

+4 -4
View File
@@ -1,16 +1,16 @@
// Types for Setting related functionality
export interface User {
id: number;
id: string;
namaUser: string;
username: string;
email: string;
hakAkses: string;
hakAkses: string[];
status: string;
}
export interface HakAkses {
id: number;
id: string;
namaHakAkses: string;
status: string;
pages: string[];
}