aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/video-watch.module.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-29 17:18:30 +0200
committerChocobozzz <me@florianbigard.com>2021-06-29 17:18:39 +0200
commit911186dae411d78788ccede093c251303187589a (patch)
tree967a07cd985ae4e2ea5249855726455fe929471d /client/src/app/+videos/+video-watch/video-watch.module.ts
parentb0c43e36dbdc2c964f6828a78b146faebfb75b21 (diff)
downloadPeerTube-911186dae411d78788ccede093c251303187589a.tar.gz
PeerTube-911186dae411d78788ccede093c251303187589a.tar.zst
PeerTube-911186dae411d78788ccede093c251303187589a.zip
Reorganize watch components
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.ts20
1 files changed, 11 insertions, 9 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 93b143542..f4484f1fe 100644
--- a/client/src/app/+videos/+video-watch/video-watch.module.ts
+++ b/client/src/app/+videos/+video-watch/video-watch.module.ts
@@ -12,16 +12,18 @@ import { SharedVideoMiniatureModule } from '@app/shared/shared-video-miniature'
12import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist' 12import { SharedVideoPlaylistModule } from '@app/shared/shared-video-playlist'
13import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module' 13import { SharedActorImageModule } from '../../shared/shared-actor-image/shared-actor-image.module'
14import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service' 14import { VideoCommentService } from '../../shared/shared-video-comment/video-comment.service'
15import { VideoCommentAddComponent } from './comment/video-comment-add.component'
16import { VideoCommentComponent } from './comment/video-comment.component'
17import { VideoCommentsComponent } from './comment/video-comments.component'
18import { PlayerStylesComponent } from './player-styles.component' 15import { PlayerStylesComponent } from './player-styles.component'
19import { RecommendationsModule } from './recommendations/recommendations.module' 16import {
20import { TimestampRouteTransformerDirective } from './timestamp-route-transformer.directive' 17 RecommendationsModule,
21import { VideoAvatarChannelComponent } from './video-avatar-channel.component' 18 VideoAvatarChannelComponent,
22import { VideoDescriptionComponent } from './video-description.component' 19 VideoDescriptionComponent,
23import { VideoRateComponent } from './video-rate.component' 20 VideoRateComponent,
24import { VideoWatchPlaylistComponent } from './video-watch-playlist.component' 21 VideoWatchPlaylistComponent
22} from './shared'
23import { VideoCommentAddComponent } from './shared/comment/video-comment-add.component'
24import { VideoCommentComponent } from './shared/comment/video-comment.component'
25import { VideoCommentsComponent } from './shared/comment/video-comments.component'
26import { TimestampRouteTransformerDirective } from './shared/timestamp-route-transformer.directive'
25import { VideoWatchRoutingModule } from './video-watch-routing.module' 27import { VideoWatchRoutingModule } from './video-watch-routing.module'
26import { VideoWatchComponent } from './video-watch.component' 28import { VideoWatchComponent } from './video-watch.component'
27 29