mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
16 lines
438 B
JavaScript
Executable File
16 lines
438 B
JavaScript
Executable File
export default {
|
|
name: "Event",
|
|
collection: "events",
|
|
schema: {
|
|
name: { type: String, required: true },
|
|
category: { type: String },
|
|
description: { type: String },
|
|
announcement: { type: Object, required: true },
|
|
location: { type: String },
|
|
startDate: { type: Date, required: true },
|
|
endDate: { type: Date, required: true },
|
|
featured: { type: Boolean, default: false },
|
|
pageConfig: { type: Object, default: {} },
|
|
},
|
|
}
|