aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-02-15 14:46:26 +0100
committerChocobozzz <me@florianbigard.com>2018-02-15 15:29:07 +0100
commit2422c46b27790d94fd29a7092170cee5a1b56008 (patch)
treed5c1942ce20cadb27a551d87c789edfe92f5b105 /client
parent34cbef8c6cc912143a421413bdd832c4adcc556a (diff)
downloadPeerTube-2422c46b27790d94fd29a7092170cee5a1b56008.tar.gz
PeerTube-2422c46b27790d94fd29a7092170cee5a1b56008.tar.zst
PeerTube-2422c46b27790d94fd29a7092170cee5a1b56008.zip
Implement support field in video and video channel
Diffstat (limited to 'client')
-rw-r--r--client/src/app/shared/account/account.model.ts1
-rw-r--r--client/src/app/shared/video/video-details.model.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/shared/account/account.model.ts b/client/src/app/shared/account/account.model.ts
index dffca783b..0bdc76478 100644
--- a/client/src/app/shared/account/account.model.ts
+++ b/client/src/app/shared/account/account.model.ts
@@ -8,6 +8,7 @@ export class Account implements ServerAccount {
8 url: string 8 url: string
9 name: string 9 name: string
10 displayName: string 10 displayName: string
11 description: string
11 host: string 12 host: string
12 followingCount: number 13 followingCount: number
13 followersCount: number 14 followersCount: number
diff --git a/client/src/app/shared/video/video-details.model.ts b/client/src/app/shared/video/video-details.model.ts
index cf6b71b60..c746bfd66 100644
--- a/client/src/app/shared/video/video-details.model.ts
+++ b/client/src/app/shared/video/video-details.model.ts
@@ -18,6 +18,7 @@ export class VideoDetails extends Video implements VideoDetailsServerModel {
18 languageLabel: string 18 languageLabel: string
19 language: number 19 language: number
20 description: string 20 description: string
21 support: string
21 duration: number 22 duration: number
22 durationLabel: string 23 durationLabel: string
23 id: number 24 id: number