diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/videos/video-channel.model.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts index 02fbcc315..6e61183a7 100644 --- a/shared/models/videos/video-channel.model.ts +++ b/shared/models/videos/video-channel.model.ts | |||
@@ -1,13 +1,11 @@ | |||
1 | import { Actor } from '../actors/actor.model' | 1 | import { Actor } from '../actors/actor.model' |
2 | import { Video } from './video.model' | 2 | import { Video } from './video.model' |
3 | import { Account } from '../actors' | ||
3 | 4 | ||
4 | export interface VideoChannel extends Actor { | 5 | export interface VideoChannel extends Actor { |
5 | displayName: string | 6 | displayName: string |
6 | description: string | 7 | description: string |
7 | support: string | 8 | support: string |
8 | isLocal: boolean | 9 | isLocal: boolean |
9 | ownerAccount?: { | 10 | ownerAccount?: Account |
10 | id: number | ||
11 | uuid: string | ||
12 | } | ||
13 | } | 11 | } |