autocomit

This commit is contained in:
2026-02-08 18:31:27 +01:00
parent 8fef802597
commit 6b588005c9
18 changed files with 1585 additions and 4 deletions
+30
View File
@@ -67,6 +67,16 @@ export const routes: Routes = [
path: ':id/edit',
loadComponent: () => import('./features/applications/application-form/application-form.component')
.then(m => m.ApplicationFormComponent)
},
{
path: ':applicationId/versions/new',
loadComponent: () => import('./features/versions/version-form/version-form.component')
.then(m => m.VersionFormComponent)
},
{
path: ':applicationId/versions/:versionId/edit',
loadComponent: () => import('./features/versions/version-form/version-form.component')
.then(m => m.VersionFormComponent)
}
]
},
@@ -95,6 +105,26 @@ export const routes: Routes = [
}
]
},
{
path: 'deployments',
children: [
{
path: '',
loadComponent: () => import('./features/deployments/deployment-list/deployment-list.component')
.then(m => m.DeploymentListComponent)
},
{
path: 'new',
loadComponent: () => import('./features/deployments/deployment-form/deployment-form.component')
.then(m => m.DeploymentFormComponent)
},
{
path: 'current',
loadComponent: () => import('./features/deployments/deployment-dashboard/deployment-dashboard.component')
.then(m => m.DeploymentDashboardComponent)
}
]
},
{
path: 'persons',
children: [