]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
3import { SharedModule } from '../../shared'
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'
8import { VideoShareComponent } from './modal/video-share.component'
9import { VideoWatchRoutingModule } from './video-watch-routing.module'
10import { VideoWatchComponent } from './video-watch.component'
11import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
12import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
13import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
14import { QRCodeModule } from 'angularx-qrcode'
15import { 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})
46export class VideoWatchModule { }