]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service'
3import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
4import { ClipboardModule } from 'ngx-clipboard'
5import { SharedModule } from '../../shared'
6import { MarkdownService } from '../shared'
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'
14import { VideoWatchRoutingModule } from './video-watch-routing.module'
15import { VideoWatchComponent } from './video-watch.component'
16import { NgxQRCodeModule } from 'ngx-qrcode2'
17import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
18import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-blacklist.component'
19import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module'
20
21@NgModule({
22 imports: [
23 VideoWatchRoutingModule,
24 SharedModule,
25 ClipboardModule,
26 NgbTooltipModule,
27 NgxQRCodeModule,
28 RecommendationsModule
29 ],
30
31 declarations: [
32 VideoWatchComponent,
33
34 VideoDownloadComponent,
35 VideoShareComponent,
36 VideoReportComponent,
37 VideoBlacklistComponent,
38 VideoSupportComponent,
39 VideoCommentsComponent,
40 VideoCommentAddComponent,
41 VideoCommentComponent
42 ],
43
44 exports: [
45 VideoWatchComponent
46 ],
47
48 providers: [
49 MarkdownService,
50 LinkifierService,
51 VideoCommentService
52 ]
53})
54export class VideoWatchModule { }