From e84b31cbafb891fa6d9786665580a5f3ad5a5bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=BC=E3=83=BC=E3=83=AC?= Date: Fri, 15 Nov 2024 15:13:56 +0500 Subject: [PATCH] Update index.js --- api/v1/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1/index.js b/api/v1/index.js index d4d289d..3344336 100644 --- a/api/v1/index.js +++ b/api/v1/index.js @@ -24,7 +24,7 @@ app.get('/api/extension/config/toggles', (req, res) => { // Эндпоинт для конфигурационного JSON из toggles.js app.get('/api/config/toggles', (req, res) => { - res.json(configDataOldv1); + res.json(configData); }); // Обработчик для всех неизвестных маршрутов