]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Merge branch 'release/1.4.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
CommitLineData
a685e25c 1import { NgModule } from '@angular/core'
07fa4c97 2import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
fb4fd623 3import { SharedModule } from '../../shared'
4635f59d
C
4import { VideoCommentAddComponent } from './comment/video-comment-add.component'
5import { VideoCommentComponent } from './comment/video-comment.component'
6import { VideoCommentService } from './comment/video-comment.service'
7import { VideoCommentsComponent } from './comment/video-comments.component'
4635f59d 8import { VideoShareComponent } from './modal/video-share.component'
a685e25c 9import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c 10import { VideoWatchComponent } from './video-watch.component'
63347a0f 11import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
7f5f4152 12import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
72675ebe 13import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
f36da21e 14import { QRCodeModule } from 'angularx-qrcode'
a685e25c
C
15
16@NgModule({
17 imports: [
18 VideoWatchRoutingModule,
c7e1e432 19 SharedModule,
d77ad726 20 NgbTooltipModule,
f36da21e 21 QRCodeModule,
7f5f4152 22 RecommendationsModule
a685e25c
C
23 ],
24
25 declarations: [
26 VideoWatchComponent,
72675ebe 27 VideoWatchPlaylistComponent,
a685e25c 28
a685e25c 29 VideoShareComponent,
07fa4c97 30 VideoSupportComponent,
4635f59d
C
31 VideoCommentsComponent,
32 VideoCommentAddComponent,
33 VideoCommentComponent
a685e25c
C
34 ],
35
36 exports: [
37 VideoWatchComponent
38 ],
39
40 providers: [
4635f59d 41 VideoCommentService
a685e25c
C
42 ]
43})
44export class VideoWatchModule { }