]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/channel/video-channel.model.ts
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / videos / channel / video-channel.model.ts
1 import { Actor } from '../../actors/actor.model'
2 import { Account } from '../../actors/index'
3 import { Avatar } from '../../avatars'
4
5 export interface VideoChannel extends Actor {
6 displayName: string
7 description: string
8 support: string
9 isLocal: boolean
10 ownerAccount?: Account
11 }
12
13 export interface VideoChannelSummary {
14 id: number
15 name: string
16 displayName: string
17 url: string
18 host: string
19 avatar?: Avatar
20 }