2021-06-02 10:26:32 +01:00
|
|
|
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';
|
2021-06-02 16:36:50 +01:00
|
|
|
import { NewPublicationPage } from '../shared/publication/new-publication/new-publication.page';
|
|
|
|
|
import { ViewPublicationsPage } from '../shared/publication/view-publications/view-publications.page';
|
|
|
|
|
import { PublicationDetailPage } from '../shared/publication/view-publications/publication-detail/publication-detail.page';
|
|
|
|
|
import { NewActionPage } from '../shared/publication/new-action/new-action.page';
|
|
|
|
|
import { NewEventPage } from '../shared/agenda/new-event/new-event.component';
|
|
|
|
|
import { EditEventComponent } from '../shared/agenda/edit-event/edit-event.component';
|
|
|
|
|
import { ViewEventPage } from '../shared/agenda/view-event/view-event.page';
|
|
|
|
|
import { EventListComponent } from '../shared/agenda/event-list/event-list.component';
|
|
|
|
|
import { ApproveEventComponent } from '../shared/agenda/approve-event/approve-event.component';
|
|
|
|
|
import { AttendeesPage } from '../shared/event/attendees/attendees.page';
|
|
|
|
|
import { AttendeeModalPage } from '../shared/event/attendee-modal/attendee-modal.page';
|
|
|
|
|
import { EventsToApprovePage } from '../shared/gabinete-digital/events-to-approve/events-to-approve.page';
|
2021-06-02 10:26:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
2021-06-02 16:36:50 +01:00
|
|
|
declarations: [
|
|
|
|
|
HeaderPage,
|
|
|
|
|
HeaderNoSearchPage,
|
|
|
|
|
BtnSeguintePage,
|
|
|
|
|
BtnModalDismissPage,
|
|
|
|
|
EmptyChatPage,
|
|
|
|
|
BtnCriarPage,
|
|
|
|
|
BtnAdicionarPage,
|
|
|
|
|
|
|
|
|
|
ViewPublicationsPage,
|
|
|
|
|
NewPublicationPage,
|
|
|
|
|
PublicationDetailPage,
|
|
|
|
|
NewActionPage,
|
|
|
|
|
|
|
|
|
|
NewEventPage,
|
|
|
|
|
EditEventComponent,
|
|
|
|
|
ViewEventPage,
|
|
|
|
|
EventListComponent,
|
|
|
|
|
ApproveEventComponent,
|
|
|
|
|
AttendeesPage,
|
|
|
|
|
AttendeeModalPage,
|
|
|
|
|
EventsToApprovePage,
|
|
|
|
|
],
|
2021-06-02 10:26:32 +01:00
|
|
|
exports: [
|
|
|
|
|
HeaderPage,
|
|
|
|
|
HeaderNoSearchPage,
|
|
|
|
|
BtnSeguintePage,
|
|
|
|
|
BtnModalDismissPage,
|
|
|
|
|
EmptyChatPage,
|
|
|
|
|
BtnCriarPage,
|
|
|
|
|
BtnAdicionarPage,
|
2021-06-02 16:36:50 +01:00
|
|
|
|
|
|
|
|
ViewPublicationsPage,
|
|
|
|
|
NewPublicationPage,
|
|
|
|
|
PublicationDetailPage,
|
|
|
|
|
NewActionPage,
|
|
|
|
|
|
|
|
|
|
NewEventPage,
|
|
|
|
|
EditEventComponent,
|
|
|
|
|
ViewEventPage,
|
|
|
|
|
EventListComponent,
|
|
|
|
|
ApproveEventComponent,
|
|
|
|
|
AttendeesPage,
|
|
|
|
|
AttendeeModalPage,
|
|
|
|
|
EventsToApprovePage,
|
2021-06-02 10:26:32 +01:00
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class ComponentsModule { }
|