aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/videos/video-channel.model.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts
index 470295a81..02fbcc315 100644
--- a/shared/models/videos/video-channel.model.ts
+++ b/shared/models/videos/video-channel.model.ts
@@ -6,9 +6,8 @@ export interface VideoChannel extends Actor {
6 description: string 6 description: string
7 support: string 7 support: string
8 isLocal: boolean 8 isLocal: boolean
9 owner?: { 9 ownerAccount?: {
10 name: string 10 id: number
11 uuid: string 11 uuid: string
12 } 12 }
13 videos?: Video[]
14} 13}