1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-08 06:55:30 +02:00

feat: Colorize due date and make it toggleable (#845)

This commit is contained in:
Arkadiusz Dzięgiel 2024-08-12 16:29:50 +00:00 committed by GitHub
parent f84166406f
commit c594e8bd71
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 207 additions and 38 deletions

View file

@ -20,6 +20,9 @@ export default class extends BaseModel {
relatedName: 'ownCards',
}),
dueDate: attr(),
dueCompleted: attr({
getDefault: () => false,
}),
stopwatch: attr(),
isSubscribed: attr({
getDefault: () => false,
@ -248,6 +251,7 @@ export default class extends BaseModel {
'name',
'description',
'dueDate',
'dueCompleted',
'stopwatch',
]),
...payload.card,