aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-04-25 10:21:38 +0200
committerChocobozzz <me@florianbigard.com>2018-04-25 13:50:48 +0200
commit6b738c7a31591a83fdcd9c78b6b1f98e543c378b (patch)
treedb771d0e99e9ff27570885fe2a6f58a7c1948fbc /shared/models
parent48dce1c90dff4e90a4bcffefaecf157336cf904b (diff)
downloadPeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.gz
PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.zst
PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.zip
Video channel API routes refractor
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}