add project
This commit is contained in:
@@ -50,6 +50,21 @@ export const USER_ROUTS: Routes = [
|
||||
path:'docker',
|
||||
loadComponent: () => import('../user-module/docker-management-component/docker-management-component').then((c)=>c.DockerManagementComponent),
|
||||
data:{title: 'Docker', icon: 'docker', nav:true}
|
||||
},
|
||||
{
|
||||
path: 'projects',
|
||||
loadComponent: () => import('../user-module/projects.component/projects.component').then((c) => c.ProjectsComponent),
|
||||
data: { title: 'Dashboard', icon: 'dashboard', nav: true }
|
||||
},
|
||||
{
|
||||
path: 'projects/:id/details',
|
||||
loadComponent: () => import('../user-module/project-details.component/project-details.component').then((c) => c.ProjectDetailsComponent),
|
||||
data: { title: 'Project Details' }
|
||||
},
|
||||
{
|
||||
path: 'projects/add',
|
||||
loadComponent: () => import('../user-module/project-add.component/project-add.component').then((c) => c.ProjectAddComponent),
|
||||
data: { title: 'New Project' }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user