From fbdcd4ec9f549b730f8311512bcc0c0b7bc2db0a Mon Sep 17 00:00:00 2001 From: kontrollanten <6680299+kontrollanten@users.noreply.github.com> Date: Thu, 15 Apr 2021 10:01:27 +0200 Subject: Add AccountAvatarComponent (#3965) * refactor(client): create account-avatar component * continue implement account-avatar * fix review comments --- client/src/app/+videos/+video-watch/video-watch.module.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'client/src/app/+videos/+video-watch/video-watch.module.ts') 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 29ad92f00..cf6afd852 100644 --- a/client/src/app/+videos/+video-watch/video-watch.module.ts +++ b/client/src/app/+videos/+video-watch/video-watch.module.ts @@ -17,10 +17,11 @@ import { VideoCommentsComponent } from './comment/video-comments.component' import { PlayerStylesComponent } from './player-styles.component' import { RecommendationsModule } from './recommendations/recommendations.module' import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive' -import { VideoAvatarChannelComponent } from './video-avatar-channel.component' import { VideoWatchPlaylistComponent } from './video-watch-playlist.component' import { VideoWatchRoutingModule } from './video-watch-routing.module' import { VideoWatchComponent } from './video-watch.component' +import { SharedAccountAvatarModule } from '../../shared/shared-account-avatar/shared-account-avatar.module' +import { VideoAvatarChannelComponent } from './video-avatar-channel.component' @NgModule({ imports: [ @@ -37,7 +38,8 @@ import { VideoWatchComponent } from './video-watch.component' SharedVideoCommentModule, SharedShareModal, SharedVideoModule, - SharedSupportModal + SharedSupportModal, + SharedAccountAvatarModule ], declarations: [ @@ -47,6 +49,7 @@ import { VideoWatchComponent } from './video-watch.component' VideoCommentsComponent, VideoCommentAddComponent, VideoCommentComponent, + VideoAvatarChannelComponent, VideoAvatarChannelComponent, -- cgit v1.2.3