feat: Implement project management functionality with CRUD operations and UI integration
Some checks failed
build.yaml / feat: Implement project management functionality with CRUD operations and UI integration (push) Failing after 0s

feat: Implement project management functionality with CRUD operations and UI integration
- added projects_controller.ts for crud operations-
added views Edit-vue , Index.vue and Create.vue
- small adaptions in menu.ts
additional routes is start/routes.ts for projects
This commit is contained in:
Kaimbacher 2025-10-16 15:37:55 +02:00
commit f39fe75340
6 changed files with 551 additions and 1 deletions

View file

@ -12,7 +12,7 @@ import {
mdiShieldCrownOutline,
mdiLicense,
mdiFileDocument,
mdiLibraryShelves
mdiFolderMultiple,
} from '@mdi/js';
export default [
@ -92,6 +92,12 @@ export default [
label: 'Licenses',
roles: ['administrator'],
},
{
route: 'settings.project.index',
icon: mdiFolderMultiple,
label: 'Projects',
roles: ['administrator'],
},
],
},