]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.module.ts
QR Code (#802)
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.module.ts
1 import { NgModule } from '@angular/core'
2 import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service'
3 import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
4 import { TooltipModule } from 'ngx-bootstrap/tooltip'
5 import { ClipboardModule } from 'ngx-clipboard'
6 import { SharedModule } from '../../shared'
7 import { MarkdownService } from '../shared'
8 import { VideoCommentAddComponent } from './comment/video-comment-add.component'
9 import { VideoCommentComponent } from './comment/video-comment.component'
10 import { VideoCommentService } from './comment/video-comment.service'
11 import { VideoCommentsComponent } from './comment/video-comments.component'
12 import { VideoDownloadComponent } from './modal/video-download.component'
13 import { VideoReportComponent } from './modal/video-report.component'
14 import { VideoShareComponent } from './modal/video-share.component'
15
16 import { VideoWatchRoutingModule } from './video-watch-routing.module'
17
18 import { VideoWatchComponent } from './video-watch.component'
19 import { NgxQRCodeModule } from 'ngx-qrcode2'
20
21 @NgModule({
22 imports: [
23 VideoWatchRoutingModule,
24 SharedModule,
25 ClipboardModule,
26 TooltipModule.forRoot(),
27 NgxQRCodeModule
28 ],
29
30 declarations: [
31 VideoWatchComponent,
32
33 VideoDownloadComponent,
34 VideoShareComponent,
35 VideoReportComponent,
36 VideoSupportComponent,
37 VideoCommentsComponent,
38 VideoCommentAddComponent,
39 VideoCommentComponent
40 ],
41
42 exports: [
43 VideoWatchComponent
44 ],
45
46 providers: [
47 MarkdownService,
48 LinkifierService,
49 VideoCommentService
50 ]
51 })
52 export class VideoWatchModule { }