mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
12 lines
369 B
JavaScript
Executable File
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 },
|
|
}
|
|
} |