feat: Restore toggleable due dates (#1332)

This commit is contained in:
Steven Correia
2025-09-05 07:55:20 -04:00
committed by GitHub
parent 7da241c5a3
commit 37bd4d1349
14 changed files with 140 additions and 17 deletions

View File

@@ -49,6 +49,10 @@ module.exports = {
type: 'string',
custom: isDueDate,
},
isDueCompleted: {
type: 'boolean',
allowNull: true,
},
stopwatch: {
type: 'json',
custom: isStopwatch,
@@ -93,6 +97,7 @@ module.exports = {
'name',
'description',
'dueDate',
'isDueCompleted',
'stopwatch',
]);