2019-01-31 13:40:27 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
import { FullscreenProjectorComponent } from './fullscreen-projector/fullscreen-projector.component';
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
|
|
{
|
|
|
|
path: '',
|
2019-03-08 10:43:54 +01:00
|
|
|
component: FullscreenProjectorComponent,
|
|
|
|
pathMatch: 'full'
|
2019-01-31 13:40:27 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
path: ':id',
|
|
|
|
component: FullscreenProjectorComponent
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
|
exports: [RouterModule]
|
|
|
|
})
|
|
|
|
export class FullscreenProjectorRoutingModule {}
|