2020-10-05 15:15:33 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
2020-11-03 19:25:03 +01:00
|
|
|
import {RoleUsersComponent} from './role-users.component';
|
2020-10-05 15:15:33 +02:00
|
|
|
import {ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {AlertModalModule} from "../../../utils/modal/alertModal.module";
|
|
|
|
import {LoadingModule} from "../../../utils/loading/loading.module";
|
2020-11-03 19:25:03 +01:00
|
|
|
import {IconsModule} from "../../../utils/icons/icons.module";
|
2020-11-12 18:57:32 +01:00
|
|
|
import {InputModule} from "../../../sharedComponents/input/input.module";
|
2020-11-01 16:41:02 +01:00
|
|
|
import {PageContentModule} from "../../sharedComponents/page-content/page-content.module";
|
2020-11-19 18:13:27 +01:00
|
|
|
import {SafeHtmlPipeModule} from "../../../utils/pipes/safeHTMLPipe.module";
|
2021-03-04 12:32:57 +01:00
|
|
|
import {NotifyFormModule} from "../../../notifications/notify-form/notify-form.module";
|
2021-03-28 13:07:48 +02:00
|
|
|
import {NoLoadPaging} from "../../../searchPages/searchUtils/no-load-paging.module";
|
|
|
|
import {SearchInputModule} from "../../../sharedComponents/search-input/search-input.module";
|
2022-06-30 17:22:35 +02:00
|
|
|
import {PagingModule} from "../../../utils/paging.module";
|
2020-10-05 15:15:33 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2022-06-30 17:22:35 +02:00
|
|
|
imports: [CommonModule, AlertModalModule, ReactiveFormsModule, LoadingModule, IconsModule, InputModule, PageContentModule, SafeHtmlPipeModule, NotifyFormModule, NoLoadPaging, SearchInputModule, PagingModule],
|
2020-11-03 19:25:03 +01:00
|
|
|
declarations: [RoleUsersComponent],
|
2021-01-21 16:15:53 +01:00
|
|
|
exports: [RoleUsersComponent]
|
2020-10-05 15:15:33 +02:00
|
|
|
})
|
2022-04-09 15:18:30 +02:00
|
|
|
export class RoleUsersModule {}
|