2020-12-16 15:07:28 +01:00
|
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
2020-09-10 09:48:37 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { ChatPageRoutingModule } from './chat-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ChatPage } from './chat.page';
|
2021-03-05 16:43:17 +01:00
|
|
|
import { RouterModule } from '@angular/router';
|
2021-03-29 10:33:56 +01:00
|
|
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
2021-08-18 16:40:58 +01:00
|
|
|
import { NewEventPageModule } from 'src/app/shared/agenda/new-event/new-event.module';
|
|
|
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
2021-09-27 10:53:57 +01:00
|
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
2021-11-18 13:01:53 +01:00
|
|
|
import { ImageCropperModule } from 'ngx-image-cropper';
|
2024-08-16 14:21:01 +01:00
|
|
|
import { EmptyChatPageModule } from './component/empty-chat/empty-chat.module';
|
|
|
|
|
import { EditGroupPageModule } from './component/edit-group/edit-group.module';
|
|
|
|
|
import { GroupContactsPageModule } from './component/group-messages/group-contacts/group-contacts.module';
|
|
|
|
|
import { GroupMessagesPageModule } from './component/group-messages/group-messages.module';
|
|
|
|
|
import { MessagesPageModule } from './component/messages/messages.module';
|
|
|
|
|
import { ContactsPageModule } from './component/new-group/contacts/contacts.module';
|
|
|
|
|
import { NewGroupPageModule } from './component/new-group/new-group.module';
|
2020-09-10 09:48:37 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-09-27 10:53:57 +01:00
|
|
|
FontAwesomeModule,
|
2021-03-29 10:33:56 +01:00
|
|
|
PipesModule,
|
2020-12-16 15:07:28 +01:00
|
|
|
ChatPageRoutingModule,
|
2021-03-05 16:43:17 +01:00
|
|
|
RouterModule,
|
2021-06-03 11:03:26 +01:00
|
|
|
MessagesPageModule,
|
|
|
|
|
ContactsPageModule,
|
|
|
|
|
GroupMessagesPageModule,
|
|
|
|
|
NewGroupPageModule,
|
|
|
|
|
EditGroupPageModule,
|
|
|
|
|
GroupContactsPageModule,
|
|
|
|
|
EmptyChatPageModule,
|
2021-08-18 16:40:58 +01:00
|
|
|
NewEventPageModule,
|
2021-11-18 13:01:53 +01:00
|
|
|
ImageCropperModule,
|
2021-08-18 16:40:58 +01:00
|
|
|
AttendeeModalPageModule,
|
2020-09-10 09:48:37 +01:00
|
|
|
],
|
2021-03-11 16:21:09 +01:00
|
|
|
declarations: [
|
2021-06-02 21:22:26 +01:00
|
|
|
ChatPage
|
2021-03-11 16:21:09 +01:00
|
|
|
],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
2021-06-02 21:22:26 +01:00
|
|
|
entryComponents: []
|
2020-09-10 09:48:37 +01:00
|
|
|
})
|
|
|
|
|
export class ChatPageModule {}
|