2022-01-26 23:09:26 +01:00
|
|
|
/* MagicMirror² Test config custom calendar
|
2021-04-22 10:43:10 +02:00
|
|
|
*
|
|
|
|
* By Rejas
|
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-10-04 22:48:21 +02:00
|
|
|
let config = {
|
2021-04-22 10:43:10 +02:00
|
|
|
timeFormat: 12,
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "calendar",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
|
|
|
calendars: [
|
|
|
|
{
|
2021-05-02 15:07:02 +02:00
|
|
|
maximumEntries: 6,
|
|
|
|
maximumNumberOfDays: 3650,
|
2021-04-22 10:43:10 +02:00
|
|
|
url: "http://localhost:8080/tests/configs/data/calendar_test_recurring.ics"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-10-04 22:48:21 +02:00
|
|
|
};
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2021-04-22 10:43:10 +02:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|