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';
|
2021-03-16 14:33:36 +01:00
|
|
|
import { GroupContactsPage } from 'src/app/shared/chat/group-messages/group-contacts/group-contacts.page';
|
2021-03-29 10:33:56 +01:00
|
|
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
2021-04-14 13:56:38 +01:00
|
|
|
import { EditGroupPage } from 'src/app/shared/chat/edit-group/edit-group.page';
|
2021-07-28 09:29:14 +01:00
|
|
|
|
2021-06-03 11:03:26 +01:00
|
|
|
import { ContactsPageModule } from 'src/app/shared/chat/messages/contacts/contacts.module';
|
|
|
|
|
import { GroupMessagesPageModule } from 'src/app/shared/chat/group-messages/group-messages.module';
|
|
|
|
|
import { NewGroupPageModule } from 'src/app/shared/chat/new-group/new-group.module';
|
|
|
|
|
import { EditGroupPageModule } from 'src/app/shared/chat/edit-group/edit-group.module';
|
|
|
|
|
import { GroupContactsPageModule } from 'src/app/shared/chat/group-messages/group-contacts/group-contacts.module';
|
|
|
|
|
import { MessagesPageModule } from 'src/app/shared/chat/messages/messages.module';
|
|
|
|
|
import { EmptyChatPageModule } from 'src/app/shared/chat/empty-chat/empty-chat.module';
|
2021-06-03 12:08:49 +01:00
|
|
|
import { HeaderPageModule } from 'src/app/shared/header/header.module';
|
2020-09-10 09:48:37 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-07-28 09:29:14 +01:00
|
|
|
|
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 12:08:49 +01:00
|
|
|
HeaderPageModule,
|
2021-06-03 11:03:26 +01:00
|
|
|
MessagesPageModule,
|
|
|
|
|
ContactsPageModule,
|
|
|
|
|
GroupMessagesPageModule,
|
|
|
|
|
NewGroupPageModule,
|
|
|
|
|
EditGroupPageModule,
|
|
|
|
|
GroupContactsPageModule,
|
|
|
|
|
EmptyChatPageModule,
|
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 {}
|