Fix ticket status enum capitalisation in docs (#157)

This commit is contained in:
Mish 2026-02-05 03:04:03 +00:00 committed by GitHub
parent a1f3ebfaf6
commit 950c1b0894
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -93,7 +93,7 @@ interface Ticket {
id: number id: number
title: string title: string
description: string description: string
status: "open" | "closed" | "in_progress" status: "OPEN" | "CLOSED" | "IN_PROGRESS"
opened_by: User | null opened_by: User | null
closed_by: User | null closed_by: User | null
assigned_to: User | null assigned_to: User | null