X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fvideo-watch.module.ts;h=085a9ec5a36a15e078a9a6682c97c3950bd62256;hb=265ba139ebf56bbdc1c65f6ea4f367774c691fc0;hp=18319de1a7e241678e641f41cb29a1bb5a7cc365;hpb=c7e1e432b0e5d321ff2331cf3ddff56c43500788;p=github%2FChocobozzz%2FPeerTube.git 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 18319de1a..085a9ec5a 100644 --- a/client/src/app/videos/+video-watch/video-watch.module.ts +++ b/client/src/app/videos/+video-watch/video-watch.module.ts @@ -1,20 +1,26 @@ import { NgModule } from '@angular/core' +import { TooltipModule } from 'ngx-bootstrap/tooltip' +import { ClipboardModule } from 'ngx-clipboard' +import { SharedModule } from '../../shared' +import { MarkdownService } from '../shared' +import { VideoCommentAddComponent } from './comment/video-comment-add.component' +import { VideoCommentComponent } from './comment/video-comment.component' +import { VideoCommentService } from './comment/video-comment.service' +import { VideoCommentsComponent } from './comment/video-comments.component' +import { VideoDownloadComponent } from './modal/video-download.component' +import { VideoReportComponent } from './modal/video-report.component' +import { VideoShareComponent } from './modal/video-share.component' import { VideoWatchRoutingModule } from './video-watch-routing.module' -import { MarkdownService } from '../shared' -import { SharedModule } from '../../shared' -import { ClipboardModule } from 'ngx-clipboard' import { VideoWatchComponent } from './video-watch.component' -import { VideoReportComponent } from './video-report.component' -import { VideoShareComponent } from './video-share.component' -import { VideoDownloadComponent } from './video-download.component' @NgModule({ imports: [ VideoWatchRoutingModule, SharedModule, - ClipboardModule + ClipboardModule, + TooltipModule.forRoot() ], declarations: [ @@ -22,7 +28,10 @@ import { VideoDownloadComponent } from './video-download.component' VideoDownloadComponent, VideoShareComponent, - VideoReportComponent + VideoReportComponent, + VideoCommentsComponent, + VideoCommentAddComponent, + VideoCommentComponent ], exports: [ @@ -30,7 +39,8 @@ import { VideoDownloadComponent } from './video-download.component' ], providers: [ - MarkdownService + MarkdownService, + VideoCommentService ] }) export class VideoWatchModule { }