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