X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-channel.model.ts;h=6e61183a72db3c5f3331f4fce330c619da7dcaba;hb=9c2e0dbfa9098675390e00ccb0fa49c51b3c6732;hp=470295a817e5912bf525fd0d6acefa693bcc24bf;hpb=2422c46b27790d94fd29a7092170cee5a1b56008;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts index 470295a81..6e61183a7 100644 --- a/shared/models/videos/video-channel.model.ts +++ b/shared/models/videos/video-channel.model.ts @@ -1,14 +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 - owner?: { - name: string - uuid: string - } - videos?: Video[] + ownerAccount?: Account }