diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-03-18 16:28:09 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-03-18 16:28:09 +0100 |
commit | 2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70 (patch) | |
tree | 9c177f135a121ee34ed2e4f529dd2cacc3ad3f87 /client/angular/videos/models | |
parent | f0f5567b6918fc60c8cab15e13aec03a89a91dfb (diff) | |
download | PeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.tar.gz PeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.tar.zst PeerTube-2df82d42cb57783cd90ccfc11fc8ffe4b95ebb70.zip |
Change api output for videos
Diffstat (limited to 'client/angular/videos/models')
-rw-r--r-- | client/angular/videos/models/video.ts | 4 |
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 @@ | |||
1 | export interface Video { | 1 | export 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 | } |