aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-27 16:11:53 +0100
committerChocobozzz <me@florianbigard.com>2017-12-27 16:11:53 +0100
commit4635f59d7c3fea4b97029f10886c62fdf38b2084 (patch)
treed97357a00042bbfb33c4177ee24c01171d28dfce /client/src/app/videos/+video-watch/video-watch.module.ts
parentea44f375f5d3da06ca0aebfe871b9f924a26ec29 (diff)
downloadPeerTube-4635f59d7c3fea4b97029f10886c62fdf38b2084.tar.gz
PeerTube-4635f59d7c3fea4b97029f10886c62fdf38b2084.tar.zst
PeerTube-4635f59d7c3fea4b97029f10886c62fdf38b2084.zip
Add video comment components
Diffstat (limited to 'client/src/app/videos/+video-watch/video-watch.module.ts')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.module.ts18
1 files changed, 13 insertions, 5 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.module.ts b/client/src/app/videos/+video-watch/video-watch.module.ts
index e77883472..085a9ec5a 100644
--- a/client/src/app/videos/+video-watch/video-watch.module.ts
+++ b/client/src/app/videos/+video-watch/video-watch.module.ts
@@ -3,9 +3,13 @@ import { TooltipModule } from 'ngx-bootstrap/tooltip'
3import { ClipboardModule } from 'ngx-clipboard' 3import { ClipboardModule } from 'ngx-clipboard'
4import { SharedModule } from '../../shared' 4import { SharedModule } from '../../shared'
5import { MarkdownService } from '../shared' 5import { MarkdownService } from '../shared'
6import { VideoDownloadComponent } from './video-download.component' 6import { VideoCommentAddComponent } from './comment/video-comment-add.component'
7import { VideoReportComponent } from './video-report.component' 7import { VideoCommentComponent } from './comment/video-comment.component'
8import { VideoShareComponent } from './video-share.component' 8import { VideoCommentService } from './comment/video-comment.service'
9import { VideoCommentsComponent } from './comment/video-comments.component'
10import { VideoDownloadComponent } from './modal/video-download.component'
11import { VideoReportComponent } from './modal/video-report.component'
12import { VideoShareComponent } from './modal/video-share.component'
9 13
10import { VideoWatchRoutingModule } from './video-watch-routing.module' 14import { VideoWatchRoutingModule } from './video-watch-routing.module'
11 15
@@ -24,7 +28,10 @@ import { VideoWatchComponent } from './video-watch.component'
24 28
25 VideoDownloadComponent, 29 VideoDownloadComponent,
26 VideoShareComponent, 30 VideoShareComponent,
27 VideoReportComponent 31 VideoReportComponent,
32 VideoCommentsComponent,
33 VideoCommentAddComponent,
34 VideoCommentComponent
28 ], 35 ],
29 36
30 exports: [ 37 exports: [
@@ -32,7 +39,8 @@ import { VideoWatchComponent } from './video-watch.component'
32 ], 39 ],
33 40
34 providers: [ 41 providers: [
35 MarkdownService 42 MarkdownService,
43 VideoCommentService
36 ] 44 ]
37}) 45})
38export class VideoWatchModule { } 46export class VideoWatchModule { }