]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Fix build
[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'
bee29df8 15import { InputSwitchModule } from 'primeng/inputswitch'
b29bf61d 16import { TimestampRouteTransformerDirective } from '@app/shared/angular/timestamp-route-transformer.directive'
a685e25c
C
17
18@NgModule({
19 imports: [
20 VideoWatchRoutingModule,
c7e1e432 21 SharedModule,
d77ad726 22 NgbTooltipModule,
f36da21e 23 QRCodeModule,
bee29df8
RK
24 RecommendationsModule,
25 InputSwitchModule
a685e25c
C
26 ],
27
28 declarations: [
29 VideoWatchComponent,
72675ebe 30 VideoWatchPlaylistComponent,
a685e25c 31
a685e25c 32 VideoShareComponent,
07fa4c97 33 VideoSupportComponent,
4635f59d
C
34 VideoCommentsComponent,
35 VideoCommentAddComponent,
b29bf61d
RK
36 VideoCommentComponent,
37
38 TimestampRouteTransformerDirective
a685e25c
C
39 ],
40
41 exports: [
b29bf61d
RK
42 VideoWatchComponent,
43
44 TimestampRouteTransformerDirective
a685e25c
C
45 ],
46
47 providers: [
4635f59d 48 VideoCommentService
a685e25c
C
49 ]
50})
51export class VideoWatchModule { }