mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
41 lines
936 B
JavaScript
Executable File
41 lines
936 B
JavaScript
Executable File
export default {
|
|
name: "Playlist",
|
|
collection: "playlists",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
title: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
description: {
|
|
type: String
|
|
},
|
|
list: {
|
|
type: Object,
|
|
default: [],
|
|
required: true
|
|
},
|
|
cover: {
|
|
type: String,
|
|
default: "https://storage.ragestudio.net/comty-static-assets/default_song.png"
|
|
},
|
|
thumbnail: {
|
|
type: String,
|
|
default: "https://storage.ragestudio.net/comty-static-assets/default_song.png"
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
required: true
|
|
},
|
|
publisher: {
|
|
type: Object,
|
|
},
|
|
public: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
}
|
|
} |