From bb91ceace764579d3d338f8733818355a08d3ba0 Mon Sep 17 00:00:00 2001 From: padreug Date: Sun, 10 Aug 2025 19:01:30 +0200 Subject: [PATCH] feat: Implement Relay Hub Status page with connection and subscription testing features - Add a new RelayHubStatus.vue component to monitor and test the centralized Nostr relay hub functionality. - Include sections for Relay Hub Status, Subscription Details, Connection Test, Subscription Test, Mobile Visibility Test, and Configuration Info. - Implement reactive state management for connection testing and subscription events, enhancing user interaction and visibility into relay hub operations. - Update router configuration to route to the new RelayHubStatus component. --- src/pages/{RelayHubDemo.vue => RelayHubStatus.vue} | 0 src/router/index.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/pages/{RelayHubDemo.vue => RelayHubStatus.vue} (100%) diff --git a/src/pages/RelayHubDemo.vue b/src/pages/RelayHubStatus.vue similarity index 100% rename from src/pages/RelayHubDemo.vue rename to src/pages/RelayHubStatus.vue diff --git a/src/router/index.ts b/src/router/index.ts index 29a55f6..c5eb789 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -61,7 +61,7 @@ const router = createRouter({ { path: '/relay-hub-status', name: 'relay-hub-status', - component: () => import('@/pages/RelayHubDemo.vue'), + component: () => import('@/pages/RelayHubStatus.vue'), meta: { title: 'Relay Hub Status', requiresAuth: true