From 3887a9c546bdc4e54e313956e23327934c87e889 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Fri, 21 Feb 2025 23:12:58 +0330 Subject: [PATCH] added ticket route and query key --- frontend/constants/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/constants/index.ts b/frontend/constants/index.ts index 98f6206..519d47b 100644 --- a/frontend/constants/index.ts +++ b/frontend/constants/index.ts @@ -34,6 +34,9 @@ export const API_ENDPOINTS = { get_all: "/products", categories: "/products/categories", }, + tickets: { + get_all: "/tickets/", + }, }; export const QUERY_KEYS = { @@ -47,6 +50,7 @@ export const QUERY_KEYS = { account: "account", categories: "categories", addresses: "addresses", + tickets: "tickets", }; export const MUTATION_KEYS = {