Upgrade client dependencies
[oweals/peertube.git] / client / src / app / videos / videos.component.ts
1 import { Component, OnInit } from '@angular/core'
2
3 import { VideoService } from './shared'
4
5 @Component({
6   template: '<router-outlet></router-outlet>'
7 })
8 export class VideosComponent implements OnInit {
9   constructor (private videoService: VideoService) {}
10
11   ngOnInit () {
12     this.videoService.loadVideoCategories()
13     this.videoService.loadVideoLicences()
14     this.videoService.loadVideoLanguages()
15   }
16 }