aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-07-25 10:45:22 +0200
committerChocobozzz <me@florianbigard.com>2022-07-25 10:45:40 +0200
commit4f50475c67356fb1fecd1de6d2551fdc5ad9a739 (patch)
tree1650e080d1db83d1fee69e5970ca9ee2f488d470 /shared/models
parentd65cd16551449216f23d68a6238f7739bab34644 (diff)
downloadPeerTube-4f50475c67356fb1fecd1de6d2551fdc5ad9a739.tar.gz
PeerTube-4f50475c67356fb1fecd1de6d2551fdc5ad9a739.tar.zst
PeerTube-4f50475c67356fb1fecd1de6d2551fdc5ad9a739.zip
Display latest uploaded date for captions
Diffstat (limited to 'shared/models')
-rw-r--r--shared/models/videos/caption/video-caption.model.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/models/videos/caption/video-caption.model.ts b/shared/models/videos/caption/video-caption.model.ts
index d3c73e1a6..6d5665006 100644
--- a/shared/models/videos/caption/video-caption.model.ts
+++ b/shared/models/videos/caption/video-caption.model.ts
@@ -3,4 +3,5 @@ import { VideoConstant } from '../video-constant.model'
3export interface VideoCaption { 3export interface VideoCaption {
4 language: VideoConstant<string> 4 language: VideoConstant<string>
5 captionPath: string 5 captionPath: string
6 updatedAt: string
6} 7}