Files
rustycms/types/calendar.json5
Peter Meier 4de99db670
Some checks failed
Deploy to Server / deploy (push) Failing after 7s
Track all types in git, sync to server on deploy
2026-03-15 14:38:37 +01:00

23 lines
463 B
Plaintext

{
name: "calendar",
description: "Calendar (entries identified by slug).",
tags: [
"content"
],
category: "content",
fields: {
items: {
type: "array",
items: {
type: "reference",
collection: "calendar_item",
},
description: "Calendar entries (references to calendar_item)",
},
fromPost: {
type: "boolean",
default: false,
description: "Include entries from post",
},
},
}