From 5d02399ee80e36809cf893c0faf70ce9442d9646 Mon Sep 17 00:00:00 2001 From: PauI Ostrovckij Date: Tue, 9 Dec 2025 11:42:23 +0300 Subject: [PATCH] [fix] Delete unused statistics mock --- .../pages/Statistics/mockStatisticsData.js | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 AdminPanel/client/src/pages/Statistics/mockStatisticsData.js diff --git a/AdminPanel/client/src/pages/Statistics/mockStatisticsData.js b/AdminPanel/client/src/pages/Statistics/mockStatisticsData.js deleted file mode 100644 index 0ae227f9..00000000 --- a/AdminPanel/client/src/pages/Statistics/mockStatisticsData.js +++ /dev/null @@ -1,50 +0,0 @@ -/** - * Mock statistics data for testing - * Use this instead of API data for testing the HTML generation - */ -export const MOCK_STATISTICS_DATA = { - licenseInfo: { - packageType: 1, // 0 = Open Source, 1 = Enterprise, 2 = Developer - buildDate: '2025-08-20T00:00:00Z', - mode: 4, - endDate: '2026-08-20T00:00:00Z', - type: 0, - startDate: '2025-08-01T00:00:00Z', - connections: 100, - connectionsView: 500, - usersCount: 0, - usersViewCount: 0 - }, - serverInfo: { - buildVersion: '8.2', - buildNumber: '1234', - date: '2025-09-05T12:00:00Z' - }, - quota: { - edit: { - connectionsCount: 24 - }, - view: { - connectionsCount: 496 - }, - byMonth: [] - }, - connectionsStat: { - hour: { - edit: {max: 12, avr: 12}, - liveview: {max: 23, avr: 23} - }, - day: { - edit: {max: 18, avr: 18}, - liveview: {max: 42, avr: 42} - }, - week: { - edit: {max: 20, avr: 20}, - liveview: {max: 49, avr: 49} - }, - month: { - edit: {max: 24, avr: 24}, - liveview: {max: 56, avr: 56} - } - } -};