2024-03-04 03:01:52 -06:00
|
|
|
import { Routes } from '@angular/router'
|
2021-01-14 07:13:23 -06:00
|
|
|
import { LoginGuard } from '@app/core'
|
|
|
|
import { RemoteInteractionComponent } from './remote-interaction.component'
|
2024-03-05 02:30:12 -06:00
|
|
|
import { FindInBulkService } from '@app/shared/shared-search/find-in-bulk.service'
|
|
|
|
import { SearchService } from '@app/shared/shared-search/search.service'
|
|
|
|
import { VideoPlaylistService } from '@app/shared/shared-video-playlist/video-playlist.service'
|
2021-01-14 07:13:23 -06:00
|
|
|
|
2024-03-04 03:01:52 -06:00
|
|
|
export default [
|
2021-01-14 07:13:23 -06:00
|
|
|
{
|
|
|
|
path: '',
|
|
|
|
component: RemoteInteractionComponent,
|
2024-03-04 03:01:52 -06:00
|
|
|
providers: [
|
|
|
|
FindInBulkService,
|
2024-03-05 02:30:12 -06:00
|
|
|
SearchService,
|
|
|
|
VideoPlaylistService
|
2024-03-04 03:01:52 -06:00
|
|
|
],
|
2021-01-14 07:13:23 -06:00
|
|
|
canActivate: [ LoginGuard ],
|
|
|
|
data: {
|
|
|
|
meta: {
|
|
|
|
title: $localize`Remote interaction`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-04 03:01:52 -06:00
|
|
|
] satisfies Routes
|