]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.module.ts
Add video miniature dropdown
[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
15 @NgModule({
16 imports: [
17 VideoWatchRoutingModule,
18 SharedModule,
19 NgbTooltipModule,
20 NgxQRCodeModule,
21 RecommendationsModule
22 ],
23
24 declarations: [
25 VideoWatchComponent,
26
27 VideoShareComponent,
28 VideoSupportComponent,
29 VideoCommentsComponent,
30 VideoCommentAddComponent,
31 VideoCommentComponent
32 ],
33
34 exports: [
35 VideoWatchComponent
36 ],
37
38 providers: [
39 VideoCommentService
40 ]
41 })
42 export class VideoWatchModule { }