diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-23 11:38:00 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-23 11:38:18 +0200 |
commit | a4f99a766bd07851a37dd7ff8fed7acc2a3ef021 (patch) | |
tree | 825ae223689f9b6df1553da0f67f44802b1fe4ca /shared/models | |
parent | b851dabf78d0a7ffad64913498c1f9cd37f16268 (diff) | |
download | PeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.tar.gz PeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.tar.zst PeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.zip |
Add owner in video channel page
Diffstat (limited to 'shared/models')
-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 | } |