Refactor subscription settings naming

- Updated the naming of `getSubscriptionSettings` to `GetSubscriptionSettings` in the cache-proxy configuration for consistency with other settings.
This commit is contained in:
vchikalkin 2025-10-06 23:20:57 +03:00
parent 17528d12c7
commit e3e9f1cf0d

View File

@ -9,5 +9,5 @@ export const queryTTL: Record<string, number | false> = {
GetSlotsOrders: false,
GetSubscriptionPrices: seconds().fromHours(24),
GetSubscriptions: seconds().fromHours(24),
getSubscriptionSettings: seconds().fromHours(1),
GetSubscriptionSettings: seconds().fromHours(1),
};