Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion buzz/events/doctype/event_category/event_category.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"description",
"column_break_mrmh",
"banner_image",
"meta_image",
"icon_svg"
],
"fields": [
Expand Down Expand Up @@ -45,6 +46,11 @@
"fieldname": "description",
"fieldtype": "Small Text",
"label": "Description"
},
{
"fieldname": "meta_image",
"fieldtype": "Attach Image",
"label": "Meta Image"
}
],
"grid_page_length": 50,
Expand All @@ -56,7 +62,7 @@
"link_fieldname": "event_category"
}
],
"modified": "2026-01-07 14:41:57.312742",
"modified": "2026-05-08 12:38:57.139602",
"modified_by": "Administrator",
"module": "Events",
"name": "Event Category",
Expand Down
1 change: 1 addition & 0 deletions buzz/events/doctype/event_category/event_category.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class EventCategory(Document):
description: DF.SmallText | None
enabled: DF.Check
icon_svg: DF.Code | None
meta_image: DF.AttachImage | None
slug: DF.Data | None
# end: auto-generated types

Expand Down
Loading