aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+remote-interaction/remote-interaction-routing.module.ts
blob: 1dddfb3bad0f40092a5bf1f355f5a3315dfa814b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { LoginGuard } from '@app/core'
import { RemoteInteractionComponent } from './remote-interaction.component'

const remoteInteractionRoutes: Routes = [
  {
    path: '',
    component: RemoteInteractionComponent,
    canActivate: [ LoginGuard ],
    data: {
      meta: {
        title: $localize`Remote interaction`
      }
    }
  }
]

@NgModule({
  imports: [ RouterModule.forChild(remoteInteractionRoutes) ],
  exports: [ RouterModule ]
})
export class RemoteInteractionRoutingModule {}