aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-23 11:38:00 +0200
committerChocobozzz <me@florianbigard.com>2018-05-23 11:38:18 +0200
commita4f99a766bd07851a37dd7ff8fed7acc2a3ef021 (patch)
tree825ae223689f9b6df1553da0f67f44802b1fe4ca /shared
parentb851dabf78d0a7ffad64913498c1f9cd37f16268 (diff)
downloadPeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.tar.gz
PeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.tar.zst
PeerTube-a4f99a766bd07851a37dd7ff8fed7acc2a3ef021.zip
Add owner in video channel page
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}