added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / scheduling / scheduling.module.ts
diff --git a/otf-frontend/client/src/app/layout/scheduling/scheduling.module.ts b/otf-frontend/client/src/app/layout/scheduling/scheduling.module.ts
new file mode 100644 (file)
index 0000000..00f7e12
--- /dev/null
@@ -0,0 +1,52 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+import { NgModule } from '@angular/core';\r
+import { CommonModule } from '@angular/common';\r
+import { SchedulingRoutingModule } from './scheduling-routing.module'\r
+import { SchedulingComponent } from './scheduling.component';\r
+import { PageHeaderModule } from '../../shared/modules';\r
+import { MatButtonModule, MatIconModule, MatDatepickerModule, MatCheckboxModule, MatTableModule, MatFormFieldModule, MatInputModule, MatPaginatorModule, MatSnackBarModule} from '@angular/material';\r
+import { FilterPipeModule } from 'ngx-filter-pipe';\r
+import { ScheduleTestModalModule } from '../../shared/modules/schedule-test-modal/schedule-test-modal.module';\r
+import { AlertModalModule } from '../../shared/modules/alert-modal/alert-modal.module';\r
+import { ViewScheduleModalModule } from '../../shared/modules/view-schedule-modal/view-schedule-modal.module';\r
+\r
+\r
+@NgModule({\r
+  imports: [\r
+    CommonModule,\r
+    SchedulingRoutingModule,\r
+    ViewScheduleModalModule,\r
+    AlertModalModule,\r
+    MatTableModule, \r
+    MatFormFieldModule, \r
+    MatInputModule, \r
+    MatPaginatorModule,\r
+    FilterPipeModule,\r
+    MatButtonModule,\r
+    MatCheckboxModule,\r
+    MatDatepickerModule,\r
+    MatFormFieldModule,\r
+    MatIconModule,\r
+    PageHeaderModule,\r
+    MatSnackBarModule,\r
+    ScheduleTestModalModule\r
+  ],\r
+  declarations: [SchedulingComponent]\r
+})\r
+export class SchedulingModule {\r
+}\r