Hello all,
I am trying to create chore checklists for 2 kids using Wunderlist.
I have tried using the config line:
lists:["Nathan Morning List", "Sarah Morning List"]
This just concatonates the two lists so they can’t identify who is supposed to do which.
I’ve also tried just cloning the module section, using the same configuration and just changing the "lists:[… " and “header…” lines for each section. This results in the second one being loaded properly but the first list displaying the header but no checklist items.
I’ve also created a second app in Wunderlist and used separate clientID’s etc. for each section and I get the same result. The last module instance loads properly but the first is empty.
{
module: "MMM-Wunderlist",
position: "top_right", // This can be any of the regions. Best results in left or right regions.
header: "Nathan Morning", // This is optional
config: {
clientID: "*******1",
accessToken: "************1",
lists:["Nathan Morning List"]
}
},
{
module: "MMM-Wunderlist",
position: "top_right", // This can be any of the regions. Best results in left or right regions.
header: "Sarah Morning", // This is optional
config: {
clientID: "*******2",
accessToken: "***************2",
lists:["Sarah Morning List"]
}
},