aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/angular/videos/models/video.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-03-18 16:28:09 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-03-18 16:28:09 +0100
commit2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70 (patch)
tree9c177f135a121ee34ed2e4f529dd2cacc3ad3f87 /client/angular/videos/models/video.ts
parentf0f5567b6918fc60c8cab15e13aec03a89a91dfb (diff)
downloadPeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.tar.gz
PeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.tar.zst
PeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.zip
Change api output for videos
Diffstat (limited to 'client/angular/videos/models/video.ts')
-rw-r--r--client/angular/videos/models/video.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/angular/videos/models/video.ts b/client/angular/videos/models/video.ts
index 2f998c49a..e52c6d886 100644
--- a/client/angular/videos/models/video.ts
+++ b/client/angular/videos/models/video.ts
@@ -1,6 +1,8 @@
1export interface Video { 1export interface Video {
2 _id: string; 2 id: string;
3 name: string; 3 name: string;
4 description: string; 4 description: string;
5 magnetUri: string; 5 magnetUri: string;
6 podUrl: string;
7 isLocal: boolean;
6} 8}