aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos')
-rw-r--r--shared/models/videos/video-channel.model.ts9
1 files changed, 3 insertions, 6 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts
index d1a952826..b164fb555 100644
--- a/shared/models/videos/video-channel.model.ts
+++ b/shared/models/videos/video-channel.model.ts
@@ -1,13 +1,10 @@
1import { Actor } from '../actors/actor.model'
1import { Video } from './video.model' 2import { Video } from './video.model'
2 3
3export interface VideoChannel { 4export interface VideoChannel extends Actor {
4 id: number 5 displayName: string
5 name: string
6 url: string
7 description: string 6 description: string
8 isLocal: boolean 7 isLocal: boolean
9 createdAt: Date | string
10 updatedAt: Date | string
11 owner?: { 8 owner?: {
12 name: string 9 name: string
13 uuid: string 10 uuid: string