From e3e9f1cf0d3da7fa35bb61878830350f1ac1b6d1 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 6 Oct 2025 23:20:57 +0300 Subject: [PATCH] Refactor subscription settings naming - Updated the naming of `getSubscriptionSettings` to `GetSubscriptionSettings` in the cache-proxy configuration for consistency with other settings. --- apps/cache-proxy/src/proxy/lib/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cache-proxy/src/proxy/lib/config.ts b/apps/cache-proxy/src/proxy/lib/config.ts index 79d2360..bfc723f 100644 --- a/apps/cache-proxy/src/proxy/lib/config.ts +++ b/apps/cache-proxy/src/proxy/lib/config.ts @@ -9,5 +9,5 @@ export const queryTTL: Record = { GetSlotsOrders: false, GetSubscriptionPrices: seconds().fromHours(24), GetSubscriptions: seconds().fromHours(24), - getSubscriptionSettings: seconds().fromHours(1), + GetSubscriptionSettings: seconds().fromHours(1), };