routing
This commit is contained in:
@@ -84,6 +84,11 @@ import { MappingruleeditComponent } from './datamanagement/mappingrule/mappingru
|
|||||||
import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component';
|
import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component';
|
||||||
import { Token_registeryComponent } from './fnd/Token_registery/Token_registery.component';
|
import { Token_registeryComponent } from './fnd/Token_registery/Token_registery.component';
|
||||||
import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component';
|
import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component';
|
||||||
|
import { DynamicformComponent } from './superadmin/dynamicform/dynamicform.component';
|
||||||
|
import { AlldynamicformComponent } from './superadmin/dynamicform/alldynamicform/alldynamicform.component';
|
||||||
|
import { AdddynamicformComponent } from './superadmin/dynamicform/adddynamicform/adddynamicform.component';
|
||||||
|
import { EditdynamicformComponent } from './superadmin/dynamicform/editdynamicform/editdynamicform.component';
|
||||||
|
import { DynamicFormViewerComponent } from './superadmin/dynamicform/dynamic-form-viewer/dynamic-form-viewer.component';
|
||||||
|
|
||||||
// import { QueryComponent } from './superadmin/query/query.component';
|
// import { QueryComponent } from './superadmin/query/query.component';
|
||||||
// import { QueryaddComponent } from './superadmin/queryadd/queryadd.component';
|
// import { QueryaddComponent } from './superadmin/queryadd/queryadd.component';
|
||||||
@@ -138,10 +143,21 @@ const routes: Routes = [
|
|||||||
// { path: 'reportQuery/:id/queryadd', component: QueryaddComponent, canActivate: [AuthGuard], data: { roles: [Role.Admin] } },
|
// { path: 'reportQuery/:id/queryadd', component: QueryaddComponent, canActivate: [AuthGuard], data: { roles: [Role.Admin] } },
|
||||||
// { path: 'reportQuery/queryedit/:id', component: QueryeditComponent, canActivate: [AuthGuard], data: { roles: [Role.Admin] } },
|
// { path: 'reportQuery/queryedit/:id', component: QueryeditComponent, canActivate: [AuthGuard], data: { roles: [Role.Admin] } },
|
||||||
|
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
path: 'dynamicform', component: DynamicformComponent,
|
||||||
|
children: [
|
||||||
|
{ path: '', redirectTo: 'all', pathMatch: 'full' },
|
||||||
|
{ path: 'all', component: AlldynamicformComponent },
|
||||||
|
{ path: 'add', component: AdddynamicformComponent },
|
||||||
|
{ path: 'edit/:id', component: EditdynamicformComponent },
|
||||||
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{ path: 'dynamicform1', component: DynamicFormViewerComponent },
|
||||||
|
{ path: 'dynamicform1/:form_id', component: DynamicFormViewerComponent },
|
||||||
|
|
||||||
// {path:'rerunner',component:DatefunctionComponent},
|
// {path:'rerunner',component:DatefunctionComponent},
|
||||||
|
|
||||||
|
|||||||
@@ -108,6 +108,11 @@ import { MappingruleeditComponent } from './datamanagement/mappingrule/mappingru
|
|||||||
import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component';
|
import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component';
|
||||||
import { Token_registeryComponent } from './fnd/Token_registery/Token_registery.component';
|
import { Token_registeryComponent } from './fnd/Token_registery/Token_registery.component';
|
||||||
import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component';
|
import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component';
|
||||||
|
import { DynamicformComponent } from './superadmin/dynamicform/dynamicform.component';
|
||||||
|
import { AlldynamicformComponent } from './superadmin/dynamicform/alldynamicform/alldynamicform.component';
|
||||||
|
import { AdddynamicformComponent } from './superadmin/dynamicform/adddynamicform/adddynamicform.component';
|
||||||
|
import { EditdynamicformComponent } from './superadmin/dynamicform/editdynamicform/editdynamicform.component';
|
||||||
|
import { DynamicFormViewerComponent } from './superadmin/dynamicform/dynamic-form-viewer/dynamic-form-viewer.component';
|
||||||
|
|
||||||
// import { QueryComponent } from './superadmin/query/query.component';
|
// import { QueryComponent } from './superadmin/query/query.component';
|
||||||
// import { QueryaddComponent } from './superadmin/queryadd/queryadd.component';
|
// import { QueryaddComponent } from './superadmin/queryadd/queryadd.component';
|
||||||
@@ -129,7 +134,9 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component'
|
|||||||
ExtensionComponent,
|
ExtensionComponent,
|
||||||
AllextensionComponent,
|
AllextensionComponent,
|
||||||
AddextensionComponent, EditextensionComponent, ApiregisteryComponent,
|
AddextensionComponent, EditextensionComponent, ApiregisteryComponent,
|
||||||
DatamanagementComponent, DatamananementworkflowComponent, BulkimportComponent, BulkimportallComponent, BulkimportaddComponent, BulkimporteditComponent, BulkimportlineComponent, BulkimporteditlineComponent, MappingruleComponent, MappingruleallComponent, MappingruleaddComponent, MappingruleeditComponent,
|
DatamanagementComponent, DatamananementworkflowComponent, BulkimportComponent, BulkimportallComponent, BulkimportaddComponent, BulkimporteditComponent, BulkimportlineComponent,
|
||||||
|
BulkimporteditlineComponent, MappingruleComponent, MappingruleallComponent, MappingruleaddComponent, MappingruleeditComponent,
|
||||||
|
DynamicformComponent, AlldynamicformComponent, AdddynamicformComponent, EditdynamicformComponent, DynamicFormViewerComponent
|
||||||
|
|
||||||
|
|
||||||
// buildercomponents
|
// buildercomponents
|
||||||
|
|||||||
Reference in New Issue
Block a user