This commit is contained in:
2025-07-03 14:57:57 +07:00
parent be4de9f24a
commit 1b05076317
22 changed files with 631 additions and 35 deletions

10
types/menuAkses/access.ts Normal file
View File

@@ -0,0 +1,10 @@
export interface PageAccess {
path?: string
permissions?: string[]
title?: string;
}
export interface RoleAccess {
role?: string
pages?: PageAccess[]
}