Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ticket-backend/app/models/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class TicketSource(str, Enum):
GITHUB = "GITHUB"
FORM = "FORM"
WEBHOOK = "WEBHOOK"
SMS = "SMS"


class AutoResolveAction(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion ticket-backend/app/models/ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(
self._ai_reasoning = ai_reasoning or {}
self._resolution_action = resolution_action
self._suggested_assignee = suggested_assignee
self._title = title
self._title = title if title else description
self._description = description

@classmethod
Expand Down