Md Afiq Iskandar 1f22375c95 Update error button styles, theme colors, and enhance audit model
- Changed the button background color in `error.vue` to improve visibility.
- Updated the secondary color in `theme.css` for better consistency.
- Refactored border color references in `collapse.css` for clarity.
- Added new fields (`auditAction`, `auditDetails`, `auditUsername`) to the `audit` model in `schema.prisma` for enhanced tracking.
- Updated JSON schema to reflect new audit model fields.
2025-04-09 12:19:01 +08:00

120 lines
2.6 KiB
JavaScript

export default [
{
"header": "",
"description": "",
"child": [
{
"title": "Dashboard",
"path": "/dashboard",
"icon": "ic:outline-dashboard",
"child": [],
"meta": {}
}
]
},
{
"header": "Administration",
"description": "Manage your application",
"child": [
{
"title": "Configuration",
"icon": "ic:outline-settings",
"child": [
{
"title": "Environment",
"path": "/devtool/config/environment"
}
]
},
{
"title": "Menu Editor",
"icon": "ci:menu-alt-03",
"path": "/devtool/menu-editor",
"child": []
},
{
"title": "Manage Users",
"path": "/devtool/user-management",
"icon": "ph:user-circle-gear",
"child": [
{
"title": "User List",
"path": "/devtool/user-management/user",
"icon": "",
"child": []
},
{
"title": "Role List",
"path": "/devtool/user-management/role",
"icon": "",
"child": []
}
]
},
{
"title": "Content",
"icon": "mdi:pencil-ruler",
"child": [
{
"title": "Editor",
"path": "/devtool/content-editor"
},
{
"title": "Template",
"path": "/devtool/content-editor/template"
}
]
},
{
"title": "API Editor",
"path": "/devtool/api-editor",
"icon": "material-symbols:api-rounded",
"child": []
},
{
"title": "Code Playground",
"path": "/devtool/code-playground",
"icon": "mdi:code-braces",
"child": []
},
{
"title": "Form Builder",
"path": "/form-builder/manage",
"icon": "mdi:form-select",
"child": []
}
],
"meta": {
"auth": {
"role": [
"Developer"
]
}
}
},
{
"header": "Help",
"description": "Help and documentation",
"child": [
{
"title": "Documentation",
"icon": "solar:book-bookmark-minimalistic-bold",
"path": "https://manual.corrad.ai",
"external": true
},
{
"title": "UI Components",
"icon": "material-symbols:settings-input-component-outline-rounded",
"path": "https://ui.corrad.ai",
"external": true
}
],
"meta": {
"auth": {
"role": [
"Developer"
]
}
}
}
];