]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.module.ts
Fix support icon
[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 { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
12 import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
13 import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
14 import { QRCodeModule } from 'angularx-qrcode'
15 import { InputSwitchModule } from 'primeng/inputswitch'
16
17 @NgModule({
18 imports: [
19 VideoWatchRoutingModule,
20 SharedModule,
21 NgbTooltipModule,
22 QRCodeModule,
23 RecommendationsModule,
24 InputSwitchModule
25 ],
26
27 declarations: [
28 VideoWatchComponent,
29 VideoWatchPlaylistComponent,
30
31 VideoShareComponent,
32 VideoSupportComponent,
33 VideoCommentsComponent,
34 VideoCommentAddComponent,
35 VideoCommentComponent
36 ],
37
38 exports: [
39 VideoWatchComponent
40 ],
41
42 providers: [
43 VideoCommentService
44 ]
45 })
46 export class VideoWatchModule { }