diff --git a/demo-shell-ng2/app/app.component.html b/demo-shell-ng2/app/app.component.html
index d8faea094e..ece155bb91 100644
--- a/demo-shell-ng2/app/app.component.html
+++ b/demo-shell-ng2/app/app.component.html
@@ -16,6 +16,7 @@
DocumentList
DataTable
Uploader
+ Tasks
Login
@@ -53,6 +54,7 @@
DataTable
Uploader
Login
+ Tasks
diff --git a/demo-shell-ng2/app/app.component.ts b/demo-shell-ng2/app/app.component.ts
index f20fe18c0f..51b11a8cac 100644
--- a/demo-shell-ng2/app/app.component.ts
+++ b/demo-shell-ng2/app/app.component.ts
@@ -31,6 +31,7 @@ import { DataTableDemoComponent } from './components/datatable/datatable-demo.co
import { SearchComponent } from './components/search/search.component';
import { ALFRESCO_SEARCH_DIRECTIVES } from 'ng2-alfresco-search/dist/ng2-alfresco-search';
import { LoginDemoComponent } from './components/login/login-demo.component';
+import { TasksDemoComponent } from './components/tasks/tasks-demo.component';
declare var document: any;
@@ -48,7 +49,8 @@ declare var document: any;
{path: '/', name: 'Login', component: LoginDemoComponent, useAsDefault: true},
{path: '/uploader', name: 'Uploader', component: UploadButtonComponent},
{path: '/login', name: 'Login', component: LoginDemoComponent},
- {path: '/search', name: 'Search', component: SearchComponent}
+ {path: '/search', name: 'Search', component: SearchComponent},
+ {path: '/tasks', name: 'Tasks', component: TasksDemoComponent}
])
export class AppComponent {
translate: AlfrescoTranslationService;
diff --git a/demo-shell-ng2/app/components/tasks/tasks-demo.component.ts b/demo-shell-ng2/app/components/tasks/tasks-demo.component.ts
new file mode 100644
index 0000000000..6ea70b9a16
--- /dev/null
+++ b/demo-shell-ng2/app/components/tasks/tasks-demo.component.ts
@@ -0,0 +1,28 @@
+/*!
+ * @license
+ * Copyright 2016 Alfresco Software, Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Component } from 'angular2/core';
+
+@Component({
+ selector: 'tasks-demo',
+ template: `
+ Tasks
+ `
+})
+export class TasksDemoComponent {
+
+}