Add owner in video channel page

This commit is contained in:
Chocobozzz
2018-05-23 11:38:00 +02:00
parent b851dabf78
commit a4f99a766b
5 changed files with 44 additions and 20 deletions

View File

@@ -1,13 +1,11 @@
import { Actor } from '../actors/actor.model'
import { Video } from './video.model'
import { Account } from '../actors'
export interface VideoChannel extends Actor {
displayName: string
description: string
support: string
isLocal: boolean
ownerAccount?: {
id: number
uuid: string
}
ownerAccount?: Account
}