aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch.module.ts
diff options
context:
space:
mode:
authorkontrollanten <6680299+kontrollanten@users.noreply.github.com>2021-04-15 10:01:27 +0200
committerGitHub <noreply@github.com>2021-04-15 10:01:27 +0200
commitfbdcd4ec9f549b730f8311512bcc0c0b7bc2db0a (patch)
treee4c4d3a9abdc52afb2443234a57d74f0819b7d08 /client/src/app/+videos/+video-watch/video-watch.module.ts
parent266947e5efc7ff30b0020beb5a74e4d4fc696fa5 (diff)
downloadPeerTube-fbdcd4ec9f549b730f8311512bcc0c0b7bc2db0a.tar.gz
PeerTube-fbdcd4ec9f549b730f8311512bcc0c0b7bc2db0a.tar.zst
PeerTube-fbdcd4ec9f549b730f8311512bcc0c0b7bc2db0a.zip
Add AccountAvatarComponent (#3965)
* refactor(client): create account-avatar component * continue implement account-avatar * fix review comments
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.ts7
1 files changed, 5 insertions, 2 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 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'
17import { PlayerStylesComponent } from './player-styles.component' 17import { PlayerStylesComponent } from './player-styles.component'
18import { RecommendationsModule } from './recommendations/recommendations.module' 18import { RecommendationsModule } from './recommendations/recommendations.module'
19import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive' 19import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive'
20import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
21import { VideoWatchPlaylistComponent } from './video-watch-playlist.component' 20import { VideoWatchPlaylistComponent } from './video-watch-playlist.component'
22import { VideoWatchRoutingModule } from './video-watch-routing.module' 21import { VideoWatchRoutingModule } from './video-watch-routing.module'
23import { VideoWatchComponent } from './video-watch.component' 22import { VideoWatchComponent } from './video-watch.component'
23import { SharedAccountAvatarModule } from '../../shared/shared-account-avatar/shared-account-avatar.module'
24import { VideoAvatarChannelComponent } from './video-avatar-channel.component'
24 25
25@NgModule({ 26@NgModule({
26 imports: [ 27 imports: [
@@ -37,7 +38,8 @@ import { VideoWatchComponent } from './video-watch.component'
37 SharedVideoCommentModule, 38 SharedVideoCommentModule,
38 SharedShareModal, 39 SharedShareModal,
39 SharedVideoModule, 40 SharedVideoModule,
40 SharedSupportModal 41 SharedSupportModal,
42 SharedAccountAvatarModule
41 ], 43 ],
42 44
43 declarations: [ 45 declarations: [
@@ -47,6 +49,7 @@ import { VideoWatchComponent } from './video-watch.component'
47 VideoCommentsComponent, 49 VideoCommentsComponent,
48 VideoCommentAddComponent, 50 VideoCommentAddComponent,
49 VideoCommentComponent, 51 VideoCommentComponent,
52 VideoAvatarChannelComponent,
50 53
51 VideoAvatarChannelComponent, 54 VideoAvatarChannelComponent,
52 55