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