]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/channel/video-channel.model.ts
Introduce channels command
[github/Chocobozzz/PeerTube.git] / shared / models / videos / channel / video-channel.model.ts
index ae6dea42db10919009303cf192a93ad0e01e7987..5393f924da89b60748d3a482eddbf610bf74ebbb 100644 (file)
@@ -11,10 +11,15 @@ export interface VideoChannel extends Actor {
   description: string
   support: string
   isLocal: boolean
+
+  updatedAt: Date | string
+
   ownerAccount?: Account
 
   videosCount?: number
   viewsPerDay?: ViewsPerDate[] // chronologically ordered
+
+  banner?: ActorImage
 }
 
 export interface VideoChannelSummary {