autocomit
This commit is contained in:
@@ -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: [
|
||||
|
||||
Reference in New Issue
Block a user