diff options
author | Chocobozzz <me@florianbigard.com> | 2018-04-25 10:21:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-25 13:50:48 +0200 |
commit | 6b738c7a31591a83fdcd9c78b6b1f98e543c378b (patch) | |
tree | db771d0e99e9ff27570885fe2a6f58a7c1948fbc /shared | |
parent | 48dce1c90dff4e90a4bcffefaecf157336cf904b (diff) | |
download | PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.gz PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.tar.zst PeerTube-6b738c7a31591a83fdcd9c78b6b1f98e543c378b.zip |
Video channel API routes refractor
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/videos/video-channel.model.ts | 5 |
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 | } |