diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-14 18:06:56 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-14 18:06:56 +0200 |
commit | 2baea0c77cc765f7cbca9c9a2f4272268892a35c (patch) | |
tree | 47b1be5535439409a97eb80c0222c9c821b83dae /shared/models/videos/video-create.model.ts | |
parent | bf079b7bfd7f0fb75ceb28e333bb4b74d8840dd4 (diff) | |
download | PeerTube-2baea0c77cc765f7cbca9c9a2f4272268892a35c.tar.gz PeerTube-2baea0c77cc765f7cbca9c9a2f4272268892a35c.tar.zst PeerTube-2baea0c77cc765f7cbca9c9a2f4272268892a35c.zip |
Add ability for uploaders to schedule video update
Diffstat (limited to 'shared/models/videos/video-create.model.ts')
-rw-r--r-- | shared/models/videos/video-create.model.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shared/models/videos/video-create.model.ts b/shared/models/videos/video-create.model.ts index 2a1f622f6..531eafe54 100644 --- a/shared/models/videos/video-create.model.ts +++ b/shared/models/videos/video-create.model.ts | |||
@@ -13,4 +13,8 @@ export interface VideoCreate { | |||
13 | tags?: string[] | 13 | tags?: string[] |
14 | commentsEnabled?: boolean | 14 | commentsEnabled?: boolean |
15 | privacy: VideoPrivacy | 15 | privacy: VideoPrivacy |
16 | scheduleUpdate?: { | ||
17 | updateAt: Date | ||
18 | privacy?: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED | ||
19 | } | ||
16 | } | 20 | } |