Files
doneit-web/src/app/ui/chat/chat.module.ts
T

55 lines
2.0 KiB
TypeScript
Raw Normal View History

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';
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';
2024-10-07 13:27:49 +01:00
import { GroupContactsPageModule } from './component/group-contacts/group-contacts.module';
2024-08-16 14:21:01 +01:00
import { MessagesPageModule } from './component/messages/messages.module';
2024-08-19 16:01:58 +01:00
import { ContactsPageModule } from './component/contacts/contacts.module';
2024-08-16 14:21:01 +01:00
import { NewGroupPageModule } from './component/new-group/new-group.module';
2024-08-27 23:36:24 +01:00
import { ChatModule } from 'src/app/module/chat/chat.module';
2024-08-30 12:41:50 +01:00
import { IBoldLocalRepository } from 'src/app/core/chat/repository/bold/bold-local-repository';
import { BoldLocalRepository } from 'src/app/module/chat/data/repository/bold/bold-local-repository';
2020-09-10 09:48:37 +01:00
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
FontAwesomeModule,
2021-03-29 10:33:56 +01:00
PipesModule,
ChatPageRoutingModule,
2021-03-05 16:43:17 +01:00
RouterModule,
2021-06-03 11:03:26 +01:00
MessagesPageModule,
ContactsPageModule,
NewGroupPageModule,
EditGroupPageModule,
GroupContactsPageModule,
EmptyChatPageModule,
2021-08-18 16:40:58 +01:00
NewEventPageModule,
2021-11-18 13:01:53 +01:00
ImageCropperModule,
2024-09-06 12:23:13 +01:00
AttendeeModalPageModule
2024-08-30 12:41:50 +01:00
],
providers: [
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 {}