We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c634a8 commit eae31f3Copy full SHA for eae31f3
2 files changed
ticket-backend/app/models/enums.py
@@ -53,6 +53,7 @@ class TicketSource(str, Enum):
53
GITHUB = "GITHUB"
54
FORM = "FORM"
55
WEBHOOK = "WEBHOOK"
56
+ SMS = "SMS"
57
58
59
class AutoResolveAction(str, Enum):
ticket-backend/app/models/ticket.py
@@ -61,7 +61,7 @@ def __init__(
61
self._ai_reasoning = ai_reasoning or {}
62
self._resolution_action = resolution_action
63
self._suggested_assignee = suggested_assignee
64
- self._title = title
+ self._title = title if title else description
65
self._description = description
66
67
@classmethod
0 commit comments