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