mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
fix sharedMoudule error
This commit is contained in:
@@ -0,0 +1,28 @@
|
|||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
import { CommonModule } from '@angular/common';
|
||||||
|
import { HeaderPage } from '../shared/header/header.page';
|
||||||
|
import { BtnSeguintePage } from '../shared/btn-seguinte/btn-seguinte.page';
|
||||||
|
import { BtnModalDismissPage } from '../shared/btn-modal-dismiss/btn-modal-dismiss.page';
|
||||||
|
import { EmptyChatPage } from '../shared/chat/empty-chat/empty-chat.page';
|
||||||
|
import { BtnCriarPage } from '../shared/buttons/btn-criar/btn-criar.page';
|
||||||
|
import { BtnAdicionarPage } from '../shared/buttons/btn-adicionar/btn-adicionar.page';
|
||||||
|
import { HeaderNoSearchPage } from '../shared/headers/header-no-search/header-no-search.page';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
declarations: [],
|
||||||
|
exports: [
|
||||||
|
HeaderPage,
|
||||||
|
HeaderNoSearchPage,
|
||||||
|
BtnSeguintePage,
|
||||||
|
BtnModalDismissPage,
|
||||||
|
EmptyChatPage,
|
||||||
|
BtnCriarPage,
|
||||||
|
BtnAdicionarPage,
|
||||||
|
],
|
||||||
|
imports: [
|
||||||
|
CommonModule
|
||||||
|
]
|
||||||
|
})
|
||||||
|
export class ComponentsModule { }
|
||||||
@@ -9,6 +9,7 @@ import { HomePageRoutingModule } from './home-routing.module';
|
|||||||
import { HomePage } from './home.page';
|
import { HomePage } from './home.page';
|
||||||
/* import { IonicSelectableModule } from 'ionic-selectable'; */
|
/* import { IonicSelectableModule } from 'ionic-selectable'; */
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from '../components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -16,7 +17,7 @@ import { SharedModule } from 'src/app/shared/shared.module';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
HomePageRoutingModule,
|
HomePageRoutingModule,
|
||||||
SharedModule
|
ComponentsModule
|
||||||
],
|
],
|
||||||
declarations: [HomePage]
|
declarations: [HomePage]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DocumentDetailPageRoutingModule } from './document-detail-routing.modul
|
|||||||
|
|
||||||
import { DocumentDetailPage } from './document-detail.page';
|
import { DocumentDetailPage } from './document-detail.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DocumentDetailPageRoutingModule
|
DocumentDetailPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ registerLocaleData(localeDe);
|
|||||||
import { CalendarModule, DateAdapter } from 'angular-calendar';
|
import { CalendarModule, DateAdapter } from 'angular-calendar';
|
||||||
import { adapterFactory } from 'angular-calendar/date-adapters/date-fns';
|
import { adapterFactory } from 'angular-calendar/date-adapters/date-fns';
|
||||||
import { EventsToApprovePage } from 'src/app/shared/gabinete-digital/events-to-approve/events-to-approve.page';
|
import { EventsToApprovePage } from 'src/app/shared/gabinete-digital/events-to-approve/events-to-approve.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
@@ -37,7 +38,7 @@ import { EventsToApprovePage } from 'src/app/shared/gabinete-digital/events-to-a
|
|||||||
provide: DateAdapter,
|
provide: DateAdapter,
|
||||||
useFactory: adapterFactory
|
useFactory: adapterFactory
|
||||||
}),
|
}),
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
AgendaPageRoutingModule,
|
AgendaPageRoutingModule,
|
||||||
NgCalendarModule,
|
NgCalendarModule,
|
||||||
CalModalPageModule,
|
CalModalPageModule,
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ViewEventPageRoutingModule } from './view-event-routing.module';
|
|||||||
|
|
||||||
import { ViewEventPage } from './view-event.page';
|
import { ViewEventPage } from './view-event.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ViewEventPageRoutingModule
|
ViewEventPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ViewEventPage]
|
declarations: [ViewEventPage]
|
||||||
|
|||||||
@@ -17,13 +17,14 @@ import { NewGroupPage } from 'src/app/shared/chat/new-group/new-group.page';
|
|||||||
import { GroupContactsPage } from 'src/app/shared/chat/group-messages/group-contacts/group-contacts.page';
|
import { GroupContactsPage } from 'src/app/shared/chat/group-messages/group-contacts/group-contacts.page';
|
||||||
import { PipesModule } from 'src/app/pipes/pipes.module';
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
||||||
import { EditGroupPage } from 'src/app/shared/chat/edit-group/edit-group.page';
|
import { EditGroupPage } from 'src/app/shared/chat/edit-group/edit-group.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
ChatPageRoutingModule,
|
ChatPageRoutingModule,
|
||||||
RouterModule,
|
RouterModule,
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { EditGroupPageRoutingModule } from './edit-group-routing.module';
|
|||||||
|
|
||||||
import { EditGroupPage } from './edit-group.page';
|
import { EditGroupPage } from './edit-group.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
EditGroupPageRoutingModule
|
EditGroupPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [EditGroupPage]
|
declarations: [EditGroupPage]
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { GroupContactsPageRoutingModule } from './group-contacts-routing.module'
|
|||||||
import { GroupContactsPage } from './group-contacts.page';
|
import { GroupContactsPage } from './group-contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { PipesModule } from 'src/app/pipes/pipes.module';
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
GroupContactsPageRoutingModule
|
GroupContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ import { IonicModule } from '@ionic/angular';
|
|||||||
import { GroupMessagesPageRoutingModule } from './group-messages-routing.module';
|
import { GroupMessagesPageRoutingModule } from './group-messages-routing.module';
|
||||||
|
|
||||||
import { GroupMessagesPage } from './group-messages.page';
|
import { GroupMessagesPage } from './group-messages.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
|
||||||
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -17,7 +17,7 @@ import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modul
|
|||||||
BrowserModule,
|
BrowserModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PopoverModule,
|
PopoverModule,
|
||||||
GroupMessagesPageRoutingModule
|
GroupMessagesPageRoutingModule
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { ContactsPageRoutingModule } from './contacts-routing.module';
|
|||||||
import { ContactsPage } from './contacts.page';
|
import { ContactsPage } from './contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { PipesModule } from 'src/app/pipes/pipes.module';
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
ContactsPageRoutingModule
|
ContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,15 +9,16 @@ import { MessagesPageRoutingModule } from './messages-routing.module';
|
|||||||
import { MessagesPage } from './messages.page';
|
import { MessagesPage } from './messages.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { BtnModalDismissPage } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.page';
|
import { BtnModalDismissPage } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
MessagesPageRoutingModule
|
MessagesPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [MessagesPage, SharedModule]
|
declarations: [MessagesPage]
|
||||||
})
|
})
|
||||||
export class MessagesPageModule {}
|
export class MessagesPageModule {}
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ContactsPageRoutingModule } from './contacts-routing.module';
|
|||||||
|
|
||||||
import { ContactsPage } from './contacts.page';
|
import { ContactsPage } from './contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ContactsPageRoutingModule
|
ContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ContactsPage]
|
declarations: [ContactsPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { GroupChatPageRoutingModule } from './group-chat-routing.module';
|
|||||||
|
|
||||||
import { GroupChatPage } from './group-chat.page';
|
import { GroupChatPage } from './group-chat.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
GroupChatPageRoutingModule
|
GroupChatPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [GroupChatPage]
|
declarations: [GroupChatPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { NewGroupPageRoutingModule } from './new-group-routing.module';
|
|||||||
|
|
||||||
import { NewGroupPage } from './new-group.page';
|
import { NewGroupPage } from './new-group.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
NewGroupPageRoutingModule
|
NewGroupPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [NewGroupPage]
|
declarations: [NewGroupPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { EventsPageRoutingModule } from './events-routing.module';
|
|||||||
|
|
||||||
import { EventsPage } from './events.page';
|
import { EventsPage } from './events.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
EventsPageRoutingModule
|
EventsPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [EventsPage],
|
declarations: [EventsPage],
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DespachoPrPageRoutingModule } from './despacho-pr-routing.module';
|
|||||||
|
|
||||||
import { DespachoPrPage } from './despacho-pr.page';
|
import { DespachoPrPage } from './despacho-pr.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DespachoPrPageRoutingModule
|
DespachoPrPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [DespachoPrPage]
|
declarations: [DespachoPrPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DespachosPrPageRoutingModule } from './despachos-pr-routing.module';
|
|||||||
|
|
||||||
import { DespachosPrPage } from './despachos-pr.page';
|
import { DespachosPrPage } from './despachos-pr.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DespachosPrPageRoutingModule
|
DespachosPrPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [DespachosPrPage]
|
declarations: [DespachosPrPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DespachoPageRoutingModule } from './despacho-routing.module';
|
|||||||
|
|
||||||
import { DespachoPage } from './despacho.page';
|
import { DespachoPage } from './despacho.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DespachoPageRoutingModule
|
DespachoPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DespachosPageRoutingModule } from './despachos-routing.module';
|
|||||||
|
|
||||||
import { DespachosPage } from './despachos.page';
|
import { DespachosPage } from './despachos.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DespachosPageRoutingModule,
|
DespachosPageRoutingModule,
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
+2
-1
@@ -8,13 +8,14 @@ import { DiplomaAssinarPageRoutingModule } from './diploma-assinar-routing.modul
|
|||||||
|
|
||||||
import { DiplomaAssinarPage } from './diploma-assinar.page';
|
import { DiplomaAssinarPage } from './diploma-assinar.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DiplomaAssinarPageRoutingModule
|
DiplomaAssinarPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [DiplomaAssinarPage]
|
declarations: [DiplomaAssinarPage]
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { DiplomasAssinarPageRoutingModule } from './diplomas-assinar-routing.mod
|
|||||||
|
|
||||||
import { DiplomasAssinarPage } from './diplomas-assinar.page';
|
import { DiplomasAssinarPage } from './diplomas-assinar.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -15,7 +16,7 @@ import { SharedModule } from 'src/app/shared/shared.module';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
DiplomasAssinarPageRoutingModule,
|
DiplomasAssinarPageRoutingModule,
|
||||||
SharedModule
|
ComponentsModule
|
||||||
],
|
],
|
||||||
declarations: [DiplomasAssinarPage]
|
declarations: [DiplomasAssinarPage]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { DiplomaPageRoutingModule } from './diploma-routing.module';
|
|||||||
|
|
||||||
import { DiplomaPage } from './diploma.page';
|
import { DiplomaPage } from './diploma.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
DiplomaPageRoutingModule
|
DiplomaPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [DiplomaPage]
|
declarations: [DiplomaPage]
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { DiplomasPageRoutingModule } from './diplomas-routing.module';
|
|||||||
|
|
||||||
import { DiplomasPage } from './diplomas.page';
|
import { DiplomasPage } from './diplomas.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -15,7 +16,7 @@ import { SharedModule } from 'src/app/shared/shared.module';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
DiplomasPageRoutingModule,
|
DiplomasPageRoutingModule,
|
||||||
SharedModule
|
ComponentsModule
|
||||||
],
|
],
|
||||||
declarations: [DiplomasPage]
|
declarations: [DiplomasPage]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ApproveEventPageRoutingModule } from './approve-event-routing.module';
|
|||||||
|
|
||||||
import { ApproveEventPage } from './approve-event.page';
|
import { ApproveEventPage } from './approve-event.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ApproveEventPageRoutingModule
|
ApproveEventPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ApproveEventPage]
|
declarations: [ApproveEventPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { EventListPageRoutingModule } from './event-list-routing.module';
|
|||||||
|
|
||||||
import { EventListPage } from './event-list.page';
|
import { EventListPage } from './event-list.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
EventListPageRoutingModule
|
EventListPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [EventListPage]
|
declarations: [EventListPage]
|
||||||
|
|||||||
+2
-1
@@ -8,13 +8,14 @@ import { ExpedienteDetailPageRoutingModule } from './expediente-detail-routing.m
|
|||||||
|
|
||||||
import { ExpedienteDetailPage } from './expediente-detail.page';
|
import { ExpedienteDetailPage } from './expediente-detail.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ExpedienteDetailPageRoutingModule
|
ExpedienteDetailPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ExpedienteDetailPage]
|
declarations: [ExpedienteDetailPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ExpedientePageRoutingModule } from './expediente-routing.module';
|
|||||||
|
|
||||||
import { ExpedientePage } from './expediente.page';
|
import { ExpedientePage } from './expediente.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ExpedientePageRoutingModule
|
ExpedientePageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ExpedientePage],
|
declarations: [ExpedientePage],
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ExpedientePrPageRoutingModule } from './expediente-pr-routing.module';
|
|||||||
|
|
||||||
import { ExpedientePrPage } from './expediente-pr.page';
|
import { ExpedientePrPage } from './expediente-pr.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ExpedientePrPageRoutingModule
|
ExpedientePrPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ExpedientePrPage]
|
declarations: [ExpedientePrPage]
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { ExpedientesPrPageRoutingModule } from './expedientes-pr-routing.module'
|
|||||||
|
|
||||||
import { ExpedientesPrPage } from './expedientes-pr.page';
|
import { ExpedientesPrPage } from './expedientes-pr.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
@@ -15,7 +16,7 @@ import { SharedModule } from 'src/app/shared/shared.module';
|
|||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
ExpedientesPrPageRoutingModule,
|
ExpedientesPrPageRoutingModule,
|
||||||
SharedModule
|
ComponentsModule
|
||||||
],
|
],
|
||||||
declarations: [ExpedientesPrPage]
|
declarations: [ExpedientesPrPage]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import { DiplomasPage } from 'src/app/shared/gabinete-digital/diplomas/diplomas.
|
|||||||
import { ExpedientesPrPage } from 'src/app/shared/gabinete-digital/expedientes-pr/expedientes-pr.page';
|
import { ExpedientesPrPage } from 'src/app/shared/gabinete-digital/expedientes-pr/expedientes-pr.page';
|
||||||
import { SignedDiplomaComponent } from 'src/app/shared/gabinete-digital/signed-diploma/signed-diploma.component';
|
import { SignedDiplomaComponent } from 'src/app/shared/gabinete-digital/signed-diploma/signed-diploma.component';
|
||||||
import { DiplomasAssinarPage } from 'src/app/shared/gabinete-digital/diplomas-assinar/diplomas-assinar.page';
|
import { DiplomasAssinarPage } from 'src/app/shared/gabinete-digital/diplomas-assinar/diplomas-assinar.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
@@ -29,7 +30,7 @@ import { DiplomasAssinarPage } from 'src/app/shared/gabinete-digital/diplomas-as
|
|||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
GabineteDigitalPageRoutingModule
|
GabineteDigitalPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { PedidoPageRoutingModule } from './pedido-routing.module';
|
|||||||
|
|
||||||
import { PedidoPage } from './pedido.page';
|
import { PedidoPage } from './pedido.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PedidoPageRoutingModule
|
PedidoPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [PedidoPage]
|
declarations: [PedidoPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { PedidosPageRoutingModule } from './pedidos-routing.module';
|
|||||||
|
|
||||||
import { PedidosPage } from './pedidos.page';
|
import { PedidosPage } from './pedidos.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PedidosPageRoutingModule
|
PedidosPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [PedidosPage]
|
declarations: [PedidosPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { PendentesPageRoutingModule } from './pendentes-routing.module';
|
|||||||
|
|
||||||
import { PendentesPage } from './pendentes.page';
|
import { PendentesPage } from './pendentes.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PendentesPageRoutingModule
|
PendentesPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [PendentesPage]
|
declarations: [PendentesPage]
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ import { NewActionPage } from './new-action.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
NewActionPageRoutingModule
|
NewActionPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [NewActionPage]
|
declarations: []
|
||||||
})
|
})
|
||||||
export class NewActionPageModule {}
|
export class NewActionPageModule {}
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ import { NewPublicationPage } from './new-publication.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
NewPublicationPageRoutingModule
|
NewPublicationPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [NewPublicationPage]
|
declarations: []
|
||||||
})
|
})
|
||||||
export class NewPublicationPageModule {}
|
export class NewPublicationPageModule {}
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ import { PublicationDetailPage } from './publication-detail.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
PublicationDetailPageRoutingModule
|
PublicationDetailPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [PublicationDetailPage]
|
declarations: []
|
||||||
})
|
})
|
||||||
export class PublicationDetailPageModule {}
|
export class PublicationDetailPageModule {}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import { ViewPublicationsPage } from 'src/app/shared/publication/view-publicatio
|
|||||||
import { NewPublicationPage } from 'src/app/shared/publication/new-publication/new-publication.page';
|
import { NewPublicationPage } from 'src/app/shared/publication/new-publication/new-publication.page';
|
||||||
import { PublicationDetailPage } from 'src/app/shared/publication/view-publications/publication-detail/publication-detail.page';
|
import { PublicationDetailPage } from 'src/app/shared/publication/view-publications/publication-detail/publication-detail.page';
|
||||||
import { NewActionPage } from 'src/app/shared/publication/new-action/new-action.page';
|
import { NewActionPage } from 'src/app/shared/publication/new-action/new-action.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
@@ -19,7 +20,7 @@ import { NewActionPage } from 'src/app/shared/publication/new-action/new-action.
|
|||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PublicationsPageRoutingModule
|
PublicationsPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
+1
-1
@@ -15,6 +15,6 @@ import { PublicationDetailPage } from './publication-detail.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
PublicationDetailPageRoutingModule
|
PublicationDetailPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [PublicationDetailPage]
|
declarations: []
|
||||||
})
|
})
|
||||||
export class PublicationDetailPageModule {}
|
export class PublicationDetailPageModule {}
|
||||||
|
|||||||
@@ -15,6 +15,6 @@ import { ViewPublicationsPage } from './view-publications.page';
|
|||||||
IonicModule,
|
IonicModule,
|
||||||
ViewPublicationsPageRoutingModule
|
ViewPublicationsPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ViewPublicationsPage]
|
declarations: []
|
||||||
})
|
})
|
||||||
export class ViewPublicationsPageModule {}
|
export class ViewPublicationsPageModule {}
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { ViewEventPageRoutingModule } from './view-event-routing.module';
|
|||||||
import { ViewEventPage } from './view-event.page';
|
import { ViewEventPage } from './view-event.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { ChatPopoverPage } from '../../popover/chat-popover/chat-popover.page';
|
import { ChatPopoverPage } from '../../popover/chat-popover/chat-popover.page';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ViewEventPageRoutingModule
|
ViewEventPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { EditGroupPageRoutingModule } from './edit-group-routing.module';
|
|||||||
|
|
||||||
import { EditGroupPage } from './edit-group.page';
|
import { EditGroupPage } from './edit-group.page';
|
||||||
import { SharedModule } from '../../shared.module';
|
import { SharedModule } from '../../shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
EditGroupPageRoutingModule
|
EditGroupPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [EditGroupPage]
|
declarations: [EditGroupPage]
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { GroupContactsPageRoutingModule } from './group-contacts-routing.module'
|
|||||||
import { GroupContactsPage } from './group-contacts.page';
|
import { GroupContactsPage } from './group-contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { PipesModule } from 'src/app/pipes/pipes.module';
|
import { PipesModule } from 'src/app/pipes/pipes.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PipesModule,
|
PipesModule,
|
||||||
GroupContactsPageRoutingModule
|
GroupContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { GroupMessagesPageRoutingModule } from './group-messages-routing.module'
|
|||||||
import { GroupMessagesPage } from './group-messages.page';
|
import { GroupMessagesPage } from './group-messages.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
PopoverModule,
|
PopoverModule,
|
||||||
GroupMessagesPageRoutingModule
|
GroupMessagesPageRoutingModule
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,13 +9,14 @@ import { ContactsPageRoutingModule } from './contacts-routing.module';
|
|||||||
import { ContactsPage } from './contacts.page';
|
import { ContactsPage } from './contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
import { FilterPipe } from 'src/app/pipes/filter.pipe';
|
import { FilterPipe } from 'src/app/pipes/filter.pipe';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ContactsPageRoutingModule
|
ContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
exports: [FilterPipe],
|
exports: [FilterPipe],
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { MessagesPageRoutingModule } from './messages-routing.module';
|
|||||||
|
|
||||||
import { MessagesPage } from './messages.page';
|
import { MessagesPage } from './messages.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
MessagesPageRoutingModule
|
MessagesPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [MessagesPage],
|
declarations: [MessagesPage],
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ContactsPageRoutingModule } from './contacts-routing.module';
|
|||||||
|
|
||||||
import { ContactsPage } from './contacts.page';
|
import { ContactsPage } from './contacts.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ContactsPageRoutingModule
|
ContactsPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ContactsPage]
|
declarations: [ContactsPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { GroupChatPageRoutingModule } from './group-chat-routing.module';
|
|||||||
|
|
||||||
import { GroupChatPage } from './group-chat.page';
|
import { GroupChatPage } from './group-chat.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
GroupChatPageRoutingModule
|
GroupChatPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [GroupChatPage]
|
declarations: [GroupChatPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { NewGroupPageRoutingModule } from './new-group-routing.module';
|
|||||||
|
|
||||||
import { NewGroupPage } from './new-group.page';
|
import { NewGroupPage } from './new-group.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
NewGroupPageRoutingModule
|
NewGroupPageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [NewGroupPage]
|
declarations: [NewGroupPage]
|
||||||
|
|||||||
@@ -8,13 +8,14 @@ import { ExpedientePageRoutingModule } from './expediente-routing.module';
|
|||||||
|
|
||||||
import { ExpedientePage } from './expediente.page';
|
import { ExpedientePage } from './expediente.page';
|
||||||
import { SharedModule } from 'src/app/shared/shared.module';
|
import { SharedModule } from 'src/app/shared/shared.module';
|
||||||
|
import { ComponentsModule } from 'src/app/components/components.module';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
CommonModule,
|
CommonModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
IonicModule,
|
IonicModule,
|
||||||
SharedModule,
|
ComponentsModule,
|
||||||
ExpedientePageRoutingModule
|
ExpedientePageRoutingModule
|
||||||
],
|
],
|
||||||
declarations: [ExpedientePage],
|
declarations: [ExpedientePage],
|
||||||
|
|||||||
Reference in New Issue
Block a user