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.
This commit is contained in:
padreug 2025-08-10 19:01:30 +02:00
parent 355fb6e94b
commit bb91ceace7
2 changed files with 1 additions and 1 deletions

View file

@ -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