]> 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 02fbcc315a1ab09e7a51a76f4dee5a482282de14..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
-  ownerAccount?: {
-    id: number
-    uuid: string
-  }
+  ownerAccount?: Account
 }