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-10-29 15:20:41 +01:00
|
|
|
import {IconsService} from "../../../utils/icons/icons.service";
|
|
|
|
import {person_add, remove_circle_outline} from "../../../utils/icons/icons";
|
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";
|
2020-10-05 15:15:33 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2021-03-04 12:32:57 +01:00
|
|
|
imports: [CommonModule, AlertModalModule, ReactiveFormsModule, LoadingModule, IconsModule, InputModule, PageContentModule, SafeHtmlPipeModule, NotifyFormModule],
|
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
|
|
|
})
|
2020-11-03 19:25:03 +01:00
|
|
|
export class RoleUsersModule {
|
2020-10-29 15:20:41 +01:00
|
|
|
constructor(private iconsService: IconsService) {
|
|
|
|
this.iconsService.registerIcons([remove_circle_outline, person_add]);
|
|
|
|
}
|
|
|
|
}
|