Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 14cf3b9

Browse files
committedMar 15, 2025··
Allow custom calendar
1 parent 42abd47 commit 14cf3b9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎data/Aldil.json

+3
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@
1616
{
1717
"url": "https://twitter.com/aldil_lyon"
1818
}
19+
],
20+
"calendars": [
21+
{ "url": "https://www.aldil.org/events.ics" }
1922
]
2023
}

‎schema/community.json

+16
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,22 @@
4343
{ "type": "string" }
4444
],
4545
"uniqueItems": true
46+
},
47+
"calendars": {
48+
"type": "array",
49+
"items": [
50+
{
51+
"type": "object",
52+
"properties": {
53+
"prefixTag": { "type": "string" },
54+
"url": { "type": "string" }
55+
},
56+
"required": [
57+
"url"
58+
]
59+
}
60+
],
61+
"uniqueItems": true
4662
}
4763
},
4864
"required": [

0 commit comments

Comments
 (0)
Please sign in to comment.