feat: status transition and allowed fields consolidated

This commit is contained in:
2025-06-02 22:12:56 +02:00
parent a9e32034a7
commit 5205f4051c
3 changed files with 75 additions and 69 deletions

View File

@@ -35,8 +35,7 @@ class Ticket(models.Model):
STATUS_CHOICES = [
("new", "Neu"),
("in_progress", "In Bearbeitung"),
("resolved", "Gelöst"),
("pending_close", "Wartend - Schließen"),
("resolved", "Lösungsvorschlag"),
("closed", "Geschlossen"),
]