mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
export default {
|
|
name: "TrackOverride",
|
|
collection: "track_overrides",
|
|
schema: {
|
|
track_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
service: {
|
|
type: String,
|
|
},
|
|
override: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
} |