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

@@ -70,6 +70,10 @@ module.exports = {
custom: isDueDate,
allowNull: true,
},
isDueCompleted: {
type: 'boolean',
allowNull: true,
},
stopwatch: {
type: 'json',
custom: isStopwatch,
@@ -136,6 +140,7 @@ module.exports = {
'name',
'description',
'dueDate',
'isDueCompleted',
'stopwatch',
);
}
@@ -195,6 +200,7 @@ module.exports = {
'name',
'description',
'dueDate',
'isDueCompleted',
'stopwatch',
'isSubscribed',
]);