aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/app.module.ts
diff options
context:
space:
mode:
authorLvbo163 <lv.bo163@zte.com.cn>2017-09-17 14:54:05 +0800
committerLvbo163 <lv.bo163@zte.com.cn>2017-09-17 14:54:05 +0800
commit3b9daa6af92637841b8a60a3f4ce0912b3dab240 (patch)
tree5f0369e5294d4dcf483a8a521229ad5c6b92b9f9 /sdc-workflow-designer-ui/src/app/app.module.ts
parent091eb47f3daea6901cd4d3ca6357476caa4cf05b (diff)
Add CRUD operation for workflows
Add CRUD and export operation for workflows. Issue-ID: SDC-72 Change-Id: Ie2ef818a6979cc13b9e2dad7cea3b3121727146f Signed-off-by: Lvbo163 <lv.bo163@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/app.module.ts')
-rw-r--r--sdc-workflow-designer-ui/src/app/app.module.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/sdc-workflow-designer-ui/src/app/app.module.ts b/sdc-workflow-designer-ui/src/app/app.module.ts
index b2bcb742..4ce9eedb 100644
--- a/sdc-workflow-designer-ui/src/app/app.module.ts
+++ b/sdc-workflow-designer-ui/src/app/app.module.ts
@@ -10,6 +10,7 @@
* ZTE - initial API and implementation and/or initial documentation
*/
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgxTreeSelectModule } from 'ngx-tree-select';
@@ -47,6 +48,7 @@ import { IntermediateCatchEventComponent } from "./components/property/intermedi
import { SequenceFlowComponent } from "./components/sequence-flow/sequence-flow.component";
import { ScriptTaskComponent } from "./components/property/script-task/script-task.component";
import { DragSelectDirective } from "./directive/drag-select/drag-select.directive";
+import { WorkflowsComponent } from "./components/menu/workflows/workflows.component";
@NgModule({
declarations: [
@@ -69,8 +71,10 @@ import { DragSelectDirective } from "./directive/drag-select/drag-select.directi
SequenceFlowComponent,
StartEventParametersComponent,
ToolbarComponent,
+ WorkflowsComponent,
],
imports: [
+ BrowserAnimationsModule,
BrowserModule,
HttpModule,
InMemoryWebApiModule.forRoot(InMemoryDataService),