]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+remote-interaction/remote-interaction-routing.module.ts
Update translations
[github/Chocobozzz/PeerTube.git] / client / src / app / +remote-interaction / remote-interaction-routing.module.ts
CommitLineData
d43c6b1f
C
1import { NgModule } from '@angular/core'
2import { RouterModule, Routes } from '@angular/router'
3import { LoginGuard } from '@app/core'
4import { RemoteInteractionComponent } from './remote-interaction.component'
5
6const remoteInteractionRoutes: Routes = [
7 {
8 path: '',
9 component: RemoteInteractionComponent,
10 canActivate: [ LoginGuard ],
11 data: {
12 meta: {
13 title: $localize`Remote interaction`
14 }
15 }
16 }
17]
18
19@NgModule({
20 imports: [ RouterModule.forChild(remoteInteractionRoutes) ],
21 exports: [ RouterModule ]
22})
23export class RemoteInteractionRoutingModule {}