2022-01-19 17:24:11 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2022-11-21 12:26:48 +01:00
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-04-05 15:58:12 +02:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
import { MatMenuModule } from '@angular/material/menu';
|
2022-11-21 12:26:48 +01:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { AppRoutingModule } from './app.routing.module';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
import { environment } from 'src/environments/environment';
|
|
|
|
|
2022-11-21 12:26:48 +01:00
|
|
|
import { AdminDashboardComponent } from './admin/admin-dashboard/admin-dashboard.component';
|
2022-01-19 17:24:11 +01:00
|
|
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
2022-11-21 12:26:48 +01:00
|
|
|
import { CallComponent } from './openvidu-call/call.component';
|
2022-03-21 14:23:50 +01:00
|
|
|
import { TestingComponent } from './testing-app/testing.component';
|
2022-04-05 15:58:12 +02:00
|
|
|
// openvidu-angular
|
|
|
|
import { OpenViduAngularModule } from 'openvidu-angular';
|
2022-01-19 17:24:11 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2022-07-06 13:55:15 +02:00
|
|
|
declarations: [AppComponent, DashboardComponent, AdminDashboardComponent, CallComponent, TestingComponent],
|
2022-01-20 12:07:42 +01:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
2022-03-21 14:23:50 +01:00
|
|
|
MatCheckboxModule,
|
2022-01-20 12:07:42 +01:00
|
|
|
MatButtonModule,
|
2022-03-21 14:23:50 +01:00
|
|
|
MatIconModule,
|
2022-04-05 15:58:12 +02:00
|
|
|
MatMenuModule,
|
2022-01-20 12:07:42 +01:00
|
|
|
BrowserAnimationsModule,
|
2022-02-15 16:24:01 +01:00
|
|
|
OpenViduAngularModule.forRoot(environment),
|
2022-01-20 12:07:42 +01:00
|
|
|
AppRoutingModule // Order is important, AppRoutingModule must be the last import for useHash working
|
|
|
|
],
|
2022-04-05 15:58:12 +02:00
|
|
|
providers: [],
|
2022-01-20 12:07:42 +01:00
|
|
|
bootstrap: [AppComponent]
|
2022-01-19 17:24:11 +01:00
|
|
|
})
|
2022-01-20 12:07:42 +01:00
|
|
|
export class AppModule {}
|