mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
37 lines
833 B
JavaScript
37 lines
833 B
JavaScript
|
/* MagicMirror² Test config for multiple calendar events having the same name and start date/time
|
||
|
*
|
||
|
* By Paranoid93 https://github.com/Paranoid93/
|
||
|
* MIT Licensed.
|
||
|
*/
|
||
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
maximumEntries: 30,
|
||
|
hideDuplicates: false,
|
||
|
calendars: [
|
||
|
{
|
||
|
maximumEntries: 15,
|
||
|
maximumNumberOfDays: 10000,
|
||
|
url: "http://localhost:8080/tests/mocks/calendar_test.ics" // contains 11 events
|
||
|
},
|
||
|
{
|
||
|
maximumEntries: 15,
|
||
|
maximumNumberOfDays: 10000,
|
||
|
url: "http://localhost:8080/tests/mocks/calendar_test_clone.ics" // clone of upper calendar
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|