X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideos%2F%2Bvideo-watch%2Fvideo-watch.module.ts;h=21aa33b84691aed67c710605f6eed36ec7940da1;hb=da0310f821b039fea1fcbf8aea49e1d2279ba98e;hp=5821dc2b7325b2ea04dc36c8b3af3988a7f12e9f;hpb=cfde28bac33c3644e1b6218eb471b675a37def60;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 5821dc2b7..21aa33b84 100644 --- a/client/src/app/+videos/+video-watch/video-watch.module.ts +++ b/client/src/app/+videos/+video-watch/video-watch.module.ts @@ -1,23 +1,20 @@ -import { QRCodeModule } from 'angularx-qrcode' import { NgModule } from '@angular/core' import { SharedFormModule } from '@app/shared/shared-forms' import { SharedGlobalIconModule } from '@app/shared/shared-icons' import { SharedMainModule } from '@app/shared/shared-main' import { SharedModerationModule } from '@app/shared/shared-moderation' +import { SharedShareModal } from '@app/shared/shared-share-modal' import { SharedUserSubscriptionModule } from '@app/shared/shared-user-subscription' import { SharedVideoCommentModule } from '@app/shared/shared-video-comment' import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature' import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist' -import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service' import { VideoCommentAddComponent } from './comment/video-comment-add.component' import { VideoCommentComponent } from './comment/video-comment.component' import { VideoCommentsComponent } from './comment/video-comments.component' -import { VideoShareComponent } from './modal/video-share.component' import { VideoSupportComponent } from './modal/video-support.component' import { RecommendationsModule } from './recommendations/recommendations.module' import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive' -import { VideoDurationPipe } from './video-duration-formatter.pipe' import { VideoWatchPlaylistComponent } from './video-watch-playlist.component' import { VideoWatchRoutingModule } from './video-watch-routing.module' import { VideoWatchComponent } from './video-watch.component' @@ -25,8 +22,6 @@ import { VideoWatchComponent } from './video-watch.component' @NgModule({ imports: [ VideoWatchRoutingModule, - NgbTooltipModule, - QRCodeModule, RecommendationsModule, SharedMainModule, @@ -36,21 +31,20 @@ import { VideoWatchComponent } from './video-watch.component' SharedUserSubscriptionModule, SharedModerationModule, SharedGlobalIconModule, - SharedVideoCommentModule + SharedVideoCommentModule, + SharedShareModal ], declarations: [ VideoWatchComponent, VideoWatchPlaylistComponent, - VideoShareComponent, VideoSupportComponent, VideoCommentsComponent, VideoCommentAddComponent, VideoCommentComponent, TimestampRouteTransformerDirective, - VideoDurationPipe, TimestampRouteTransformerDirective ],