1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-21 08:24:16 +00:00

12 lines
369 B
JavaScript

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 },
}
}