add thumbnail field to album model, update album retrieval to use POST method, and enhance album list component with dynamic fetching

This commit is contained in:
wisplite
2025-11-22 22:10:41 -06:00
parent 432a9e5229
commit 8035be9a60
5 changed files with 42 additions and 4 deletions
+1
View File
@@ -73,6 +73,7 @@ func CreateAlbum(accessToken string, title string, description string, parentID
Title: title,
Description: description,
ParentID: parentID,
Thumbnail: "",
}
result := db.GetDB().Create(&album)
if result.Error != nil {