From 7d84d00ec9e4423921293eb7f4a2d273ec28727d Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Sun, 25 May 2025 00:19:13 +0330 Subject: [PATCH] added new notifications routes 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 e039ece..6414bf2 100644 --- a/frontend/constants/index.ts +++ b/frontend/constants/index.ts @@ -15,6 +15,9 @@ export const API_ENDPOINTS = { }, update: "/accounts/profile", subscribe: "/accounts/subscribe", + notifications: { + get_all: "/accounts/notification/all", + }, }, product: { comments: "/products/comments", @@ -85,6 +88,7 @@ export const QUERY_KEYS = { orders: "orders", cart: "cart", transaction: "transaction", + notifications: "notifications", }; export const MUTATION_KEYS = {