aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/video/video.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-25 11:44:31 +0100
committerChocobozzz <me@florianbigard.com>2020-11-25 11:44:31 +0100
commit69524f6ed170c74fab8d5833920c389fde992f3e (patch)
tree70f21690f6de8e8bb11efb43249d2267d0844165 /client/src/app/shared/shared-main/video/video.model.ts
parentc418d483004dfbae9ea38d54aa1577db46d34a8a (diff)
downloadPeerTube-69524f6ed170c74fab8d5833920c389fde992f3e.tar.gz
PeerTube-69524f6ed170c74fab8d5833920c389fde992f3e.tar.zst
PeerTube-69524f6ed170c74fab8d5833920c389fde992f3e.zip
Fix circular dep issue
Diffstat (limited to 'client/src/app/shared/shared-main/video/video.model.ts')
-rw-r--r--client/src/app/shared/shared-main/video/video.model.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-main/video/video.model.ts b/client/src/app/shared/shared-main/video/video.model.ts
index 8e0e68020..04e7bd717 100644
--- a/client/src/app/shared/shared-main/video/video.model.ts
+++ b/client/src/app/shared/shared-main/video/video.model.ts
@@ -1,6 +1,9 @@
1import { AuthUser } from '@app/core' 1import { AuthUser } from '@app/core'
2import { User } from '@app/core/users/user.model' 2import { User } from '@app/core/users/user.model'
3import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl } from '@app/helpers' 3import { durationToString, getAbsoluteAPIUrl, getAbsoluteEmbedUrl } from '@app/helpers'
4import { Account } from '@app/shared/shared-main/account/account.model'
5import { Actor } from '@app/shared/shared-main/account/actor.model'
6import { VideoChannel } from '@app/shared/shared-main/video-channel/video-channel.model'
4import { peertubeTranslate } from '@shared/core-utils/i18n' 7import { peertubeTranslate } from '@shared/core-utils/i18n'
5import { 8import {
6 Avatar, 9 Avatar,
@@ -12,7 +15,6 @@ import {
12 VideoScheduleUpdate, 15 VideoScheduleUpdate,
13 VideoState 16 VideoState
14} from '@shared/models' 17} from '@shared/models'
15import { Account, Actor, VideoChannel } from '@app/shared/shared-main'
16 18
17export class Video implements VideoServerModel { 19export class Video implements VideoServerModel {
18 byVideoChannel: string 20 byVideoChannel: string