diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-10-24 19:41:09 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-10-26 09:11:38 +0200 |
commit | 72c7248b6fdcdb2175e726ff51b42e7555f2bd84 (patch) | |
tree | 1bfdee99dbe2392cc997edba8e314e2a8a401c72 /shared/models/videos/video-channel.model.ts | |
parent | 8113a93a0d9f31aa9e23702bbc31b8a76275ae22 (diff) | |
download | PeerTube-72c7248b6fdcdb2175e726ff51b42e7555f2bd84.tar.gz PeerTube-72c7248b6fdcdb2175e726ff51b42e7555f2bd84.tar.zst PeerTube-72c7248b6fdcdb2175e726ff51b42e7555f2bd84.zip |
Add video channels
Diffstat (limited to 'shared/models/videos/video-channel.model.ts')
-rw-r--r-- | shared/models/videos/video-channel.model.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shared/models/videos/video-channel.model.ts b/shared/models/videos/video-channel.model.ts new file mode 100644 index 000000000..ee56c54b6 --- /dev/null +++ b/shared/models/videos/video-channel.model.ts | |||
@@ -0,0 +1,15 @@ | |||
1 | import { Video } from './video.model' | ||
2 | |||
3 | export interface VideoChannel { | ||
4 | id: number | ||
5 | name: string | ||
6 | description: string | ||
7 | isLocal: boolean | ||
8 | createdAt: Date | string | ||
9 | updatedAt: Date | string | ||
10 | owner?: { | ||
11 | name: string | ||
12 | uuid: string | ||
13 | } | ||
14 | videos?: Video[] | ||
15 | } | ||