X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fvideos%2F%2Bvideo-watch%2Fvideo-watch.module.ts;h=2f448db780c9000f899187d28cb39577b1590914;hb=28f3d1b36a70426795240c9370e47b6c4ba847f8;hp=7920147b2016aa3f497cf03a032bf231e3083e58;hpb=2d9fea161fd4fc73994fc77951bafdccdc2071fd;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 7920147b2..2f448db78 100644 --- a/client/src/app/videos/+video-watch/video-watch.module.ts +++ b/client/src/app/videos/+video-watch/video-watch.module.ts @@ -1,9 +1,7 @@ import { NgModule } from '@angular/core' -import { LinkifierService } from '@app/videos/+video-watch/comment/linkifier.service' import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component' 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' @@ -16,7 +14,7 @@ import { VideoWatchComponent } from './video-watch.component' import { NgxQRCodeModule } from 'ngx-qrcode2' import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { VideoBlacklistComponent } from '@app/videos/+video-watch/modal/video-blacklist.component' -import { TextareaAutosizeModule } from 'ngx-textarea-autosize' +import { RecommendationsModule } from '@app/videos/recommendations/recommendations.module' @NgModule({ imports: [ @@ -25,7 +23,7 @@ import { TextareaAutosizeModule } from 'ngx-textarea-autosize' ClipboardModule, NgbTooltipModule, NgxQRCodeModule, - TextareaAutosizeModule + RecommendationsModule ], declarations: [ @@ -46,8 +44,6 @@ import { TextareaAutosizeModule } from 'ngx-textarea-autosize' ], providers: [ - MarkdownService, - LinkifierService, VideoCommentService ] })