]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Refactor how we use icons
[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
C
3import { ClipboardModule } from 'ngx-clipboard'
4import { SharedModule } from '../../shared'
4635f59d
C
5import { VideoCommentAddComponent } from './comment/video-comment-add.component'
6import { VideoCommentComponent } from './comment/video-comment.component'
7import { VideoCommentService } from './comment/video-comment.service'
8import { VideoCommentsComponent } from './comment/video-comments.component'
9import { VideoDownloadComponent } from './modal/video-download.component'
10import { VideoReportComponent } from './modal/video-report.component'
11import { VideoShareComponent } from './modal/video-share.component'
a685e25c 12import { VideoWatchRoutingModule } from './video-watch-routing.module'
a685e25c 13import { VideoWatchComponent } from './video-watch.component'
4503cb2a 14import { NgxQRCodeModule } from 'ngx-qrcode2'
63347a0f 15import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
26b7305a 16import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-blacklist.component'
7f5f4152 17import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
a685e25c
C
18
19@NgModule({
20 imports: [
21 VideoWatchRoutingModule,
c7e1e432 22 SharedModule,
e9189001 23 ClipboardModule,
d77ad726 24 NgbTooltipModule,
2d9fea16 25 NgxQRCodeModule,
7f5f4152 26 RecommendationsModule
a685e25c
C
27 ],
28
29 declarations: [
30 VideoWatchComponent,
31
a96aed15 32 VideoDownloadComponent,
a685e25c 33 VideoShareComponent,
4635f59d 34 VideoReportComponent,
26b7305a 35 VideoBlacklistComponent,
07fa4c97 36 VideoSupportComponent,
4635f59d
C
37 VideoCommentsComponent,
38 VideoCommentAddComponent,
39 VideoCommentComponent
a685e25c
C
40 ],
41
42 exports: [
43 VideoWatchComponent
44 ],
45
46 providers: [
4635f59d 47 VideoCommentService
a685e25c
C
48 ]
49})
50export class VideoWatchModule { }