Change artists array to artist string field in Track schema

This commit is contained in:
SrGooglo 2025-04-24 06:12:08 +00:00
parent 71c201e351
commit d990430449

View File

@ -13,8 +13,8 @@ export default {
album: {
type: String,
},
artists: {
type: Array,
artist: {
type: String,
},
metadata: {
type: Object,
@ -32,15 +32,12 @@ export default {
},
cover: {
type: String,
default: "https://storage.ragestudio.net/comty-static-assets/default_song.png"
default:
"https://storage.ragestudio.net/comty-static-assets/default_song.png",
},
publisher: {
type: Object,
required: true,
},
lyrics_enabled: {
type: Boolean,
default: false
}
}
},
}