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