X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Fvideos%2Fvideo-channel.model.ts;h=6e61183a72db3c5f3331f4fce330c619da7dcaba;hb=9c2e0dbfa9098675390e00ccb0fa49c51b3c6732;hp=02fbcc315a1ab09e7a51a76f4dee5a482282de14;hpb=6b738c7a31591a83fdcd9c78b6b1f98e543c378b;p=github%2FChocobozzz%2FPeerTube.git 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 @@ 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 }