]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Fix videos list margin with hidden menu
[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'
4503cb2a 11import { NgxQRCodeModule } from 'ngx-qrcode2'
63347a0f 12import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
7f5f4152 13import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
a685e25c
C
14
15@NgModule({
16 imports: [
17 VideoWatchRoutingModule,
c7e1e432 18 SharedModule,
d77ad726 19 NgbTooltipModule,
2d9fea16 20 NgxQRCodeModule,
7f5f4152 21 RecommendationsModule
a685e25c
C
22 ],
23
24 declarations: [
25 VideoWatchComponent,
26
a685e25c 27 VideoShareComponent,
07fa4c97 28 VideoSupportComponent,
4635f59d
C
29 VideoCommentsComponent,
30 VideoCommentAddComponent,
31 VideoCommentComponent
a685e25c
C
32 ],
33
34 exports: [
35 VideoWatchComponent
36 ],
37
38 providers: [
4635f59d 39 VideoCommentService
a685e25c
C
40 ]
41})
42export class VideoWatchModule { }