mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
13 lines
398 B
JavaScript
Executable File
13 lines
398 B
JavaScript
Executable File
export default {
|
|
name: "FeaturedEvent",
|
|
collection: "featuredEvents",
|
|
schema: {
|
|
name: { type: String, required: true },
|
|
category: { type: String },
|
|
description: { type: String },
|
|
dates: { type: Object },
|
|
location: { type: String },
|
|
announcement: { type: Object, required: true },
|
|
expired: { type: Boolean, default: false }
|
|
}
|
|
} |