2017-09-26 18:13:00 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
import { AppMaterialModule } from './app.material.module';
|
|
|
|
|
|
|
|
import { routing } from './app.routing';
|
|
|
|
import { AppComponent } from './app.component';
|
2017-09-30 13:48:40 +02:00
|
|
|
import { TestSessionsComponent } from './components/test-sessions/test-sessions.component';
|
|
|
|
import { TestApirestComponent } from './components/test-apirest/test-apirest.component';
|
2017-09-28 19:13:29 +02:00
|
|
|
import { OpenviduInstanceComponent } from './components/openvidu-instance/openvidu-instance.component';
|
2018-05-29 18:32:49 +02:00
|
|
|
import { VideoComponent } from './components/video/video.component';
|
|
|
|
import { OpenViduVideoComponent } from './components/video/ov-video.component';
|
2018-05-18 12:46:41 +02:00
|
|
|
import { ExtensionDialogComponent } from './components/dialogs/extension-dialog.component';
|
|
|
|
import { LocalRecordingDialogComponent } from './components/dialogs/local-recording-dialog.component';
|
2018-03-01 11:25:25 +01:00
|
|
|
|
2017-09-30 13:48:40 +02:00
|
|
|
import { OpenviduRestService } from './services/openvidu-rest.service';
|
|
|
|
import { OpenviduParamsService } from './services/openvidu-params.service';
|
2017-10-09 18:48:05 +02:00
|
|
|
import { TestFeedService } from './services/test-feed.service';
|
2018-03-01 11:25:25 +01:00
|
|
|
import { MuteSubscribersService } from './services/mute-subscribers.service';
|
2018-05-18 12:46:41 +02:00
|
|
|
import { SessionPropertiesDialogComponent } from './components/dialogs/session-properties-dialog.component';
|
|
|
|
import { SessionApiDialogComponent } from './components/dialogs/session-api-dialog.component';
|
2018-05-29 18:32:49 +02:00
|
|
|
import { EventsDialogComponent } from './components/dialogs/events-dialog.component';
|
2017-09-26 18:13:00 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2017-09-30 13:48:40 +02:00
|
|
|
OpenviduInstanceComponent,
|
2018-05-29 18:32:49 +02:00
|
|
|
VideoComponent,
|
|
|
|
OpenViduVideoComponent,
|
2017-09-30 13:48:40 +02:00
|
|
|
TestSessionsComponent,
|
2017-10-04 10:30:15 +02:00
|
|
|
TestApirestComponent,
|
2018-03-01 11:25:25 +01:00
|
|
|
ExtensionDialogComponent,
|
2018-05-18 12:46:41 +02:00
|
|
|
SessionPropertiesDialogComponent,
|
|
|
|
SessionApiDialogComponent,
|
2018-05-29 18:32:49 +02:00
|
|
|
EventsDialogComponent,
|
2018-03-01 11:25:25 +01:00
|
|
|
LocalRecordingDialogComponent
|
2017-09-26 18:13:00 +02:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
FormsModule,
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
AppMaterialModule,
|
|
|
|
FlexLayoutModule,
|
|
|
|
routing
|
|
|
|
],
|
2017-09-27 16:24:39 +02:00
|
|
|
providers: [
|
2017-09-30 13:48:40 +02:00
|
|
|
OpenviduRestService,
|
2017-10-09 18:48:05 +02:00
|
|
|
OpenviduParamsService,
|
2018-03-01 11:25:25 +01:00
|
|
|
TestFeedService,
|
|
|
|
MuteSubscribersService
|
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
ExtensionDialogComponent,
|
2018-05-18 12:46:41 +02:00
|
|
|
SessionPropertiesDialogComponent,
|
|
|
|
SessionApiDialogComponent,
|
2018-05-29 18:32:49 +02:00
|
|
|
EventsDialogComponent,
|
2018-03-01 11:25:25 +01:00
|
|
|
LocalRecordingDialogComponent
|
2017-09-27 16:24:39 +02:00
|
|
|
],
|
2017-09-26 18:13:00 +02:00
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|