Files

34 lines
733 B
JavaScript
Raw Permalink Normal View History

const config = {
address: "0.0.0.0",
ipWhitelist: [],
timeFormat: 12,
modules: [
{
module: "calendar",
position: "bottom_bar",
config: {
2023-10-01 20:13:41 +02:00
customEvents: [{ keyword: "CustomEvent", symbol: "dice", eventClass: "undo" }],
forceUseCurrentTime: true,
calendars: [
{
2023-04-04 20:44:32 +02:00
maximumEntries: 5,
2024-10-25 11:34:35 +02:00
pastDaysCount: 5,
broadcastPastEvents: true,
2020-11-24 14:57:51 +01:00
maximumNumberOfDays: 10000,
2020-07-18 21:10:36 +02:00
symbol: "birthday-cake",
2020-07-19 11:54:03 +02:00
fullDaySymbol: "calendar-day",
recurringSymbol: "undo",
2023-01-01 18:09:08 +01:00
url: "http://localhost:8080/tests/mocks/calendar_test_icons.ics"
}
]
}
}
]
};
2021-07-05 00:33:50 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}