]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.module.ts
Move video watch playlist in its own component
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
1 import { NgModule } from '@angular/core'
2 import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
3 import { SharedModule } from '../../shared'
4 import { VideoCommentAddComponent } from './comment/video-comment-add.component'
5 import { VideoCommentComponent } from './comment/video-comment.component'
6 import { VideoCommentService } from './comment/video-comment.service'
7 import { VideoCommentsComponent } from './comment/video-comments.component'
8 import { VideoShareComponent } from './modal/video-share.component'
9 import { VideoWatchRoutingModule } from './video-watch-routing.module'
10 import { VideoWatchComponent } from './video-watch.component'
11 import { NgxQRCodeModule } from 'ngx-qrcode2'
12 import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
13 import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
14 import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
15
16 @NgModule({
17 imports: [
18 VideoWatchRoutingModule,
19 SharedModule,
20 NgbTooltipModule,
21 NgxQRCodeModule,
22 RecommendationsModule
23 ],
24
25 declarations: [
26 VideoWatchComponent,
27 VideoWatchPlaylistComponent,
28
29 VideoShareComponent,
30 VideoSupportComponent,
31 VideoCommentsComponent,
32 VideoCommentAddComponent,
33 VideoCommentComponent
34 ],
35
36 exports: [
37 VideoWatchComponent
38 ],
39
40 providers: [
41 VideoCommentService
42 ]
43 })
44 export class VideoWatchModule { }