]> 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 b164fb555593a7824e9ee46cc6fb72395a99f960..6e61183a72db3c5f3331f4fce330c619da7dcaba 100644 (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
-  owner?: {
-    name: string
-    uuid: string
-  }
-  videos?: Video[]
+  ownerAccount?: Account
 }