]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-studio/edit/video-studio-edit.resolver.ts
Support video views/viewers stats in server
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-studio / edit / video-studio-edit.resolver.ts
1
2 import { Injectable } from '@angular/core'
3 import { ActivatedRouteSnapshot, Resolve } from '@angular/router'
4 import { VideoService } from '@app/shared/shared-main'
5
6 @Injectable()
7 export class VideoStudioEditResolver implements Resolve<any> {
8 constructor (
9 private videoService: VideoService
10 ) {
11 }
12
13 resolve (route: ActivatedRouteSnapshot) {
14 const videoId: string = route.params['videoId']
15
16 return this.videoService.getVideo({ videoId })
17 }
18 }