]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-channel.model.ts
Update iso639 translations for french and deutch
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-channel.model.ts
index d1a952826f34a3b18833be875000f493c96daa24..6e61183a72db3c5f3331f4fce330c619da7dcaba 100644 (file)
@@ -1,16 +1,11 @@
+import { Actor } from '../actors/actor.model'
 import { Video } from './video.model'
+import { Account } from '../actors'
 
-export interface VideoChannel {
-  id: number
-  name: string
-  url: string
+export interface VideoChannel extends Actor {
+  displayName: string
   description: string
+  support: string
   isLocal: boolean
-  createdAt: Date | string
-  updatedAt: Date | string
-  owner?: {
-    name: string
-    uuid: string
-  }
-  videos?: Video[]
+  ownerAccount?: Account
 }