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';
|
2020-12-16 15:07:28 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-03-05 16:43:17 +01:00
|
|
|
import { RouterModule } from '@angular/router';
|
2021-03-12 11:56:54 +01:00
|
|
|
import { GroupMessagesPage } from 'src/app/shared/chat/group-messages/group-messages.page';
|
|
|
|
|
import { MessagesPage } from 'src/app/shared/chat/messages/messages.page';
|
2021-03-15 15:19:07 +01:00
|
|
|
import { EmptyChatPage } from 'src/app/shared/chat/empty-chat/empty-chat.page';
|
|
|
|
|
import { ContactsPage } from 'src/app/shared/chat/messages/contacts/contacts.page';
|
2021-03-15 18:09:41 +01:00
|
|
|
import { NewGroupPage } from 'src/app/shared/chat/new-group/new-group.page';
|
2020-09-10 09:48:37 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-12-16 15:07:28 +01:00
|
|
|
SharedModule,
|
|
|
|
|
ChatPageRoutingModule,
|
2021-03-05 16:43:17 +01:00
|
|
|
RouterModule,
|
2020-09-10 09:48:37 +01:00
|
|
|
],
|
2021-03-11 16:21:09 +01:00
|
|
|
declarations: [
|
|
|
|
|
ChatPage,
|
|
|
|
|
MessagesPage,
|
2021-03-15 15:19:07 +01:00
|
|
|
ContactsPage,
|
2021-03-11 16:21:09 +01:00
|
|
|
GroupMessagesPage,
|
2021-03-15 18:09:41 +01:00
|
|
|
NewGroupPage,
|
2021-03-11 16:21:09 +01:00
|
|
|
],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
2021-03-15 18:09:41 +01:00
|
|
|
entryComponents: [
|
|
|
|
|
MessagesPage,
|
|
|
|
|
ContactsPage,
|
|
|
|
|
GroupMessagesPage,
|
|
|
|
|
NewGroupPage,
|
|
|
|
|
]
|
2020-09-10 09:48:37 +01:00
|
|
|
})
|
|
|
|
|
export class ChatPageModule {}
|