Skip to content

Commit

Permalink
set ticket create to pending status (#4015) (patch)
Browse files Browse the repository at this point in the history
# Description

Change to default status how tickets are opened in freshdesk from OPEN to PENDING
  • Loading branch information
ChrOertlin authored Dec 11, 2024
1 parent 12dd89b commit 02dee1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg/clients/freshdesk/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class TicketCreate(BaseModel):
name: str
priority: int = Priority.LOW
source: int = Source.EMAIL
status: int = Status.OPEN
status: int = Status.PENDING
subject: str
tags: list[str] = []
type: str | None = None
Expand Down

0 comments on commit 02dee1e

Please sign in to comment.