cbrooker / MMM-Todoist

This is an extension for the MagicMirror2 platform. It will display your Todoist todos on your MagicMirror.
MIT License
151 stars 58 forks source link

Any way to show subtasks under parent tasks? #94

Open Grzy7316 opened 3 years ago

Grzy7316 commented 3 years ago

Would it be possible to show subtasks under parent tasks? Ideally Indented in and under the parent task?

cbrooker commented 3 years ago

Yes, absolutely.

Add "displaySubtasks: true" to your config for MMM-Todist.

modules: [ { module: 'MMM-Todoist', position: 'top_right', // This can be any of the regions. Best results in left or right regions. header: 'Todoist', // This is optional config: { // See 'Configuration options' for more information. hideWhenEmpty: false, accessToken: 'accessToken from Todoist', maximumEntries: 60, updateInterval: 10*60*1000, // Update every 10 minutes fade: false, // projects and/or labels is mandatory: projects: [ 166564794 ], labels: [ "MagicMirror", "Important" ] // Tasks for any projects with these labels will be shown. displaySubtasks: true, } } ]

Grzy7316 commented 3 years ago

When I have displaySubtasks set to truem they are still not shown underneath their parent task - For example , this is what shows in magicmirror : image And this is what shows in todoist under reverse proxy all the things image