mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
[ADF-3103] Task List Demo Component (#3486)
* [ADF-3103] Added Process Definition Id to task list component * [ADF-3103] Added @input variable * [ADF-3103] Added search inputs * [ADF-2753] Fixed select inputs * [ADF-3103] Improved logic and funcionality overall * [ADF-3103] FormControl implementation * [ADF-3103] Added AppId input * [ADF-3103] Fixed Link errors * [ADF-3103] Task list table hides when invalid app is selected * [ADF-3103] Lint error * [ADF-3103] Improved user experience * [ADF-3103] changed formControlNames to [FormControl] * [ADF-3103] Improved logic and added localization * [ADF-3103] Removed whitespace * [ADF-3103] Improved logic of task list form * [ADF-3103] fixed trailing whitespaces * [ADF-3103] trailing whitespace fix * [ADF-3103] Added documentation and tests * [ADF-3103] Added tests and documentation * [ADF-3103] Tests fixed
This commit is contained in:
committed by
Eugenio Romano
parent
6508b145d0
commit
495f9937fe
@@ -49,6 +49,7 @@ import { FormLoadingComponent } from './components/form/form-loading.component';
|
||||
import { DemoPermissionComponent } from './components/permissions/demo-permissions.component';
|
||||
import { BlobPreviewComponent } from './components/blob-preview/blob-preview.component';
|
||||
import { BreadcrumbDemoComponent } from './components/breadcrumb-demo/breadcrumb-demo.component';
|
||||
import { TaskListDemoComponent } from './components/task-list-demo/task-list-demo.component';
|
||||
import { NotificationsComponent } from './components/notifications/notifications.component';
|
||||
import { CardViewComponent } from './components/card-view/card-view.component';
|
||||
import { ContentNodeSelectorComponent } from './components/content-node-selector/content-node-selector.component';
|
||||
@@ -241,6 +242,16 @@ export const appRoutes: Routes = [
|
||||
path: 'datatable-lazy',
|
||||
loadChildren: 'app/components/lazy-loading/lazy-loading.module#LazyLoadingModule'
|
||||
},
|
||||
{
|
||||
path: 'task-list',
|
||||
component: TaskListDemoComponent,
|
||||
canActivate: [AuthGuardBpm]
|
||||
},
|
||||
{
|
||||
path: 'task-list/:id',
|
||||
component: TaskListDemoComponent,
|
||||
canActivate: [AuthGuardBpm]
|
||||
},
|
||||
{
|
||||
path: 'error/:id',
|
||||
component: ErrorContentComponent
|
||||
@@ -249,7 +260,6 @@ export const appRoutes: Routes = [
|
||||
path: '**',
|
||||
redirectTo: 'error/404'
|
||||
}
|
||||
|
||||
]
|
||||
}
|
||||
];
|
||||
|
Reference in New Issue
Block a user