added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / test-executions-catalog / test-executions-catalog.module.ts
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import {NgModule} from '@angular/core';\r
18 import {CommonModule} from '@angular/common';\r
19 \r
20 import {TestExecutionsCatalogRoutingModule} from './test-executions-catalog-routing.module';\r
21 import {TestExecutionsCatalogComponent} from './test-executions-catalog.component';\r
22 import {PageHeaderModule} from 'app/shared';\r
23 import {FormsModule} from '@angular/forms';\r
24 import {FilterPipeModule} from 'ngx-filter-pipe';\r
25 import {\r
26     MatButtonModule,\r
27     MatFormFieldModule,\r
28     MatIconModule,\r
29     MatInputModule,\r
30     MatPaginatorModule,\r
31     MatTableModule,\r
32     MatTooltipModule,\r
33     MatSnackBarModule,\r
34     MatProgressSpinnerModule\r
35 } from '@angular/material';\r
36 import {TestHeadModalModule} from 'app/shared/modules/test-head-modal/test-head-modal.module';\r
37 import {AlertModalModule} from 'app/shared/modules/alert-modal/alert-modal.module';\r
38 \r
39 @NgModule({\r
40     imports: [\r
41         CommonModule,\r
42         TestExecutionsCatalogRoutingModule,\r
43         PageHeaderModule,\r
44         FormsModule,\r
45         FilterPipeModule,\r
46         MatButtonModule,\r
47         MatTableModule,\r
48         MatFormFieldModule,\r
49         MatInputModule,\r
50         MatPaginatorModule,\r
51         TestHeadModalModule,\r
52         AlertModalModule,\r
53         MatIconModule,\r
54         MatTooltipModule,\r
55         MatSnackBarModule,\r
56         MatProgressSpinnerModule\r
57     ],\r
58     declarations: [TestExecutionsCatalogComponent]\r
59 })\r
60 export class TestExecutionsCatalogModule {\r
61 }\r