]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-watch/video-watch.module.ts
Add blacklist reason field
[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'
a685e25c
C
19
20@NgModule({
21 imports: [
22 VideoWatchRoutingModule,
c7e1e432 23 SharedModule,
e9189001 24 ClipboardModule,
63347a0f 25 NgbTooltipModule.forRoot(),
4503cb2a 26 NgxQRCodeModule
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 MarkdownService,
e8cb4409 48 LinkifierService,
4635f59d 49 VideoCommentService
a685e25c
C
50 ]
51})
52export class VideoWatchModule { }