refactor(ticket): remove defect-classes endpoint and related hooks

This commit is contained in:
2026-07-31 17:25:53 +05:30
parent 87fa04e1b5
commit 9cd7186357
8 changed files with 0 additions and 85 deletions

View File

@@ -66,7 +66,6 @@ export const API_ROUTES = {
BASE: '/biz/api/v1/tickets',
DETAIL: (id: string) => `/biz/api/v1/tickets/${id}`,
TIMELINE: (id: string) => `/biz/api/v1/tickets/${id}/timeline`,
DEFECT_CLASSES: (id: string) => `/biz/api/v1/tickets/${id}/defect-classes`,
ASSIGNMENTS: (id: string) => `/biz/api/v1/tickets/${id}/assignments`,
REQUEST_EXTENSION: (ticketId: string, assignmentId: number) =>
`/biz/api/v1/tickets/${ticketId}/assignments/${assignmentId}/extension-requests`,