Fix bug 722 (#737)

* Fix project statuses

* Refactor project states

* Add translations
This commit is contained in:
Chris 2025-12-28 07:51:15 +02:00 committed by GitHub
parent e73c354e7e
commit eee1bbc013
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 947 additions and 302 deletions

View file

@ -133,10 +133,17 @@ const options = {
type: 'string',
description: 'Project description',
},
state: {
status: {
type: 'string',
enum: ['active', 'archived', 'completed'],
description: 'Project state',
enum: [
'not_started',
'planned',
'in_progress',
'waiting',
'done',
'cancelled',
],
description: 'Project status',
},
priority: {
type: 'string',