aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video.model.ts
diff options
context:
space:
mode:
authorJulien Le Bras <julien.lb.pro@gmail.com>2018-03-28 23:38:52 +0200
committerChocobozzz <me@florianbigard.com>2018-03-30 08:52:58 +0200
commit2922e048de95738b3319054ce0778f873a34a0ee (patch)
treeee35b2e8bf9e1967b7d08974d6680697b2965472 /client/src/app/shared/video/video.model.ts
parent2920281946cffd62ce5046b661d63f9867ab0654 (diff)
downloadPeerTube-2922e048de95738b3319054ce0778f873a34a0ee.tar.gz
PeerTube-2922e048de95738b3319054ce0778f873a34a0ee.tar.zst
PeerTube-2922e048de95738b3319054ce0778f873a34a0ee.zip
Add publishedAt field for video model.
* New field added in the `video` table + migration script * `publishedAt` updated to NOW when privacy changes from private to public/unlisted (default = NOW) * Models updated to handle the new attribute * Client interface updated to use `publishedAt` instead of `createdAt` except in My Account > My Videos view
Diffstat (limited to 'client/src/app/shared/video/video.model.ts')
-rw-r--r--client/src/app/shared/video/video.model.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/app/shared/video/video.model.ts b/client/src/app/shared/video/video.model.ts
index 7b68933a1..0c02cbcb9 100644
--- a/client/src/app/shared/video/video.model.ts
+++ b/client/src/app/shared/video/video.model.ts
@@ -9,6 +9,7 @@ export class Video implements VideoServerModel {
9 by: string 9 by: string
10 createdAt: Date 10 createdAt: Date
11 updatedAt: Date 11 updatedAt: Date
12 publishedAt: Date
12 category: VideoConstant<number> 13 category: VideoConstant<number>
13 licence: VideoConstant<number> 14 licence: VideoConstant<number>
14 language: VideoConstant<number> 15 language: VideoConstant<number>
@@ -56,6 +57,7 @@ export class Video implements VideoServerModel {
56 const absoluteAPIUrl = getAbsoluteAPIUrl() 57 const absoluteAPIUrl = getAbsoluteAPIUrl()
57 58
58 this.createdAt = new Date(hash.createdAt.toString()) 59 this.createdAt = new Date(hash.createdAt.toString())
60 this.publishedAt = new Date(hash.publishedAt.toString())
59 this.category = hash.category 61 this.category = hash.category
60 this.licence = hash.licence 62 this.licence = hash.licence
61 this.language = hash.language 63 this.language = hash.language