Add Artist link

This commit is contained in:
Carl Pearson
2025-05-02 05:51:52 -06:00
parent 9abe867c31
commit 90c3398ba3
4 changed files with 46 additions and 17 deletions

View File

@@ -24,16 +24,17 @@ const (
type Original struct {
gorm.Model
UserID uint
URL string
Title string
Artist string
UploadDate time.Time
Status Status
Audio bool // video download requested
Video bool // audio download requested
Watched bool
Timestamp float64
UserID uint
URL string
Title string
Artist string
UploadDate time.Time
UploaderUrl string
Status Status
Audio bool // video download requested
Video bool // audio download requested
Watched bool
Timestamp float64
Playlist bool // part of a playlist
PlaylistID uint // Playlist.ID (if part of a playlist)