forked from ryanmwangi/CalMerger
update calendars.json file to handle multiple link groups and persist links across application restarts
This commit is contained in:
parent
f9ba53fefb
commit
d7de5841d0
|
@ -1,10 +1,34 @@
|
|||
[
|
||||
{
|
||||
"url": "https://calendar.google.com/calendar/ical/b4c66eb4bb2cc15257d071bab3f935385778b042112ea1aaedada47f3f1a6e3a%40group.calendar.google.com/public/basic.ics",
|
||||
"prefix": "work"
|
||||
},
|
||||
{
|
||||
"url": "https://calendar.google.com/calendar/ical/774518759e4e2dd42aab0c511b02397bb216f3b67dc425d76bae07d1eff529d6%40group.calendar.google.com/public/basic.ics",
|
||||
"prefix": "Calendar 2"
|
||||
}
|
||||
]
|
||||
{
|
||||
"linkGroups": [
|
||||
{
|
||||
"name": "Group 1",
|
||||
"links": [
|
||||
{
|
||||
"url": "https://example.com/calendar1.ics",
|
||||
"prefix": "Calendar 1",
|
||||
"overrideSummary": false
|
||||
},
|
||||
{
|
||||
"url": "https://example.com/calendar2.ics",
|
||||
"prefix": "Calendar 2",
|
||||
"overrideSummary": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Group 2",
|
||||
"links": [
|
||||
{
|
||||
"url": "https://example.com/calendar3.ics",
|
||||
"prefix": "Calendar 3",
|
||||
"overrideSummary": false
|
||||
},
|
||||
{
|
||||
"url": "https://example.com/calendar4.ics",
|
||||
"prefix": "Calendar 4",
|
||||
"overrideSummary": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue