aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/models/videos/video-channel.model.ts6
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 @@
1import { Actor } from '../actors/actor.model' 1import { Actor } from '../actors/actor.model'
2import { Video } from './video.model' 2import { Video } from './video.model'
3import { Account } from '../actors'
3 4
4export interface VideoChannel extends Actor { 5export 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}