halaman dipisah

This commit is contained in:
2025-07-21 10:14:27 +07:00
parent 8176411cfe
commit 6ef14a5112
28 changed files with 3103 additions and 231 deletions

14
types/setting/setting.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
export interface RolePage {
id_user: number;
username: string;
email: string;
password: string;
full_name: string;
role: string;
role_description: string;
pages: {
title: string;
path: string;
permissions: string[];
}[];
}