2024-03-06 19:43:09 +00:00

12 lines
369 B
JavaScript
Executable File

export default {
name: "FeaturedPlaylist",
collection: "featuredPlaylists",
schema: {
title: { type: String, required: true },
description: { type: String },
cover_url: { type: String },
enabled: { type: Boolean, default: true },
genre: { type: String },
playlist_id: { type: String, required: true },
}
}