added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / user-management / user-management.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 import {UserManagementRoutingModule} from './user-management-routing.module';\r
20 import {UserManagementComponent} from './user-management.component';\r
21 import {\r
22     MAT_DIALOG_DATA,\r
23     MatButtonModule,\r
24     MatFormFieldModule,\r
25     MatInputModule,\r
26     MatPaginatorModule,\r
27     MatSnackBarModule,\r
28     MatSelectModule,\r
29     MatTableModule,\r
30     MatTooltipModule,\r
31     MatProgressSpinnerModule,\r
32     MatSlideToggleModule,\r
33     MatOptionModule,\r
34     MatCheckboxModule,\r
35     MatIconModule\r
36 } from '@angular/material';\r
37 import {PageHeaderModule} from '../../shared';\r
38 import {FilterPipeModule} from 'ngx-filter-pipe';\r
39 import {FormsModule} from '@angular/forms';\r
40 import {AlertModalModule} from '../../shared/modules/alert-modal/alert-modal.module';\r
41 import { NgbModule } from '@ng-bootstrap/ng-bootstrap';\r
42 import {AlertSnackbarModule} from "../../shared/modules/alert-snackbar/alert-snackbar.module";\r
43 \r
44 @NgModule({\r
45     imports: [\r
46         CommonModule,\r
47         PageHeaderModule,\r
48         FormsModule,\r
49         FilterPipeModule,\r
50         MatButtonModule,\r
51         MatCheckboxModule,\r
52         MatTableModule,\r
53         MatFormFieldModule,\r
54         MatInputModule,\r
55         MatIconModule,\r
56         MatSlideToggleModule,\r
57         MatPaginatorModule,\r
58         AlertModalModule,\r
59         MatTooltipModule,\r
60         MatSnackBarModule,\r
61         MatSelectModule,\r
62         MatOptionModule,\r
63         MatProgressSpinnerModule,\r
64         NgbModule,\r
65         AlertSnackbarModule,\r
66         UserManagementRoutingModule\r
67     ],\r
68     declarations: [UserManagementComponent],\r
69     providers: [{provide: MAT_DIALOG_DATA, useValue: {}}]\r
70 })\r
71 export class UserManagementModule { }\r