]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/videos.module.ts
Client: handle multiple file resolutions
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / videos.module.ts
CommitLineData
df98563e 1import { NgModule } from '@angular/core'
693b1aba 2
8b13c289 3import { TagInputModule } from 'ngx-chips'
ad42bea3 4
df98563e
C
5import { VideosRoutingModule } from './videos-routing.module'
6import { VideosComponent } from './videos.component'
7import { VideoAddComponent, VideoUpdateComponent } from './video-edit'
8import { LoaderComponent, VideoListComponent, VideoMiniatureComponent, VideoSortComponent } from './video-list'
4f8c0eb0
C
9import {
10 VideoWatchComponent,
11 VideoMagnetComponent,
12 VideoReportComponent,
aa8b6df4 13 VideoShareComponent
df98563e
C
14} from './video-watch'
15import { VideoService } from './shared'
16import { SharedModule } from '../shared'
693b1aba
C
17
18@NgModule({
19 imports: [
3758da94 20 TagInputModule,
ad42bea3 21
693b1aba
C
22 VideosRoutingModule,
23 SharedModule
24 ],
25
26 declarations: [
27 VideosComponent,
28
29 VideoAddComponent,
d8e689b8 30 VideoUpdateComponent,
693b1aba
C
31
32 VideoListComponent,
33 VideoMiniatureComponent,
34 VideoSortComponent,
35
36 VideoWatchComponent,
37 VideoMagnetComponent,
38 VideoShareComponent,
4f8c0eb0 39 VideoReportComponent,
693b1aba
C
40
41 LoaderComponent
42 ],
43
44 exports: [
45 VideosComponent
46 ],
47
48 providers: [
aa8b6df4 49 VideoService
693b1aba
C
50 ]
51})
52export class VideosModule { }