Create a dedicated table to track video thumbnails

This commit is contained in:
Chocobozzz
2019-04-17 10:07:00 +02:00
parent 94565d52bb
commit e8bafea35b
21 changed files with 654 additions and 266 deletions

View File

@@ -11,7 +11,7 @@ export interface PlaylistObject {
totalItems: number
attributedTo: string[]
icon: ActivityIconObject
icon?: ActivityIconObject
published: string
updated: string

View File

@@ -0,0 +1,4 @@
export enum ThumbnailType {
THUMBNAIL = 1,
PREVIEW = 2
}