Fix Associazione ricevute

This commit is contained in:
2026-03-19 16:55:31 +01:00
parent 3bdb32e6ae
commit c34d6bb080
15 changed files with 59 additions and 44 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ import { VirtualBoxesPage } from '@/pages/VirtualBoxes/VirtualBoxesPage'
import { NotificationsPage } from '@/pages/Notifications/NotificationsPage'
/**
* Routing principale dell'applicazione PecFlow.
* Routing principale dell'applicazione PEChub.
*
* Struttura:
* - /login → LoginPage (pubblica)
+3 -3
View File
@@ -1,9 +1,9 @@
/**
* Sidebar navigazione principale di PecFlow.
* Sidebar navigazione principale di PEChub.
*
* Struttura visiva (sidebar espansa):
* ┌────────────────────────────────┐
* │ [PF] PecFlow [◀] │
* │ [PF] PEChub [◀] │
* ├────────────────────────────────┤
* │ TUTTE LE CASELLE │
* │ 📥 Posta in Arrivo [badge] │
@@ -140,7 +140,7 @@ export function Sidebar() {
<div className="h-8 w-8 rounded-lg bg-blue-500 flex items-center justify-center text-white font-bold text-sm flex-shrink-0">
PF
</div>
<span className="font-bold text-lg">PecFlow</span>
<span className="font-bold text-lg">PEChub</span>
</div>
)}
{collapsed && (
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* Hook useWebSocket connessione WebSocket al backend PecFlow.
* Hook useWebSocket connessione WebSocket al backend PEChub.
*
* Il backend usa FastAPI WebSocket nativo (non Socket.io).
* Endpoint: /api/v1/ws/{tenant_id}?token=<access_token>
+2 -2
View File
@@ -66,7 +66,7 @@ export function LoginPage() {
<div className="mx-auto h-16 w-16 rounded-2xl bg-blue-600 flex items-center justify-center shadow-lg">
<span className="text-white font-bold text-2xl">PF</span>
</div>
<h1 className="mt-4 text-3xl font-bold text-gray-900">PecFlow</h1>
<h1 className="mt-4 text-3xl font-bold text-gray-900">PEChub</h1>
<p className="mt-1 text-sm text-gray-500">Gestore PEC SaaS</p>
</div>
@@ -188,7 +188,7 @@ export function LoginPage() {
</Card>
<p className="text-center text-xs text-gray-400">
PecFlow v1.0 Piattaforma gestione PEC certificata
PEChub v1.0 Piattaforma gestione PEC certificata
</p>
</div>
</div>
@@ -447,7 +447,7 @@ function RulesTab() {
<Zap className="h-12 w-12 text-muted-foreground mb-4 opacity-40" />
<p className="text-lg font-medium text-muted-foreground">Nessuna regola</p>
<p className="text-sm text-muted-foreground mt-1">
Le regole collegano gli eventi PecFlow ai canali di notifica.
Le regole collegano gli eventi PEChub ai canali di notifica.
</p>
</div>
)
+1 -1
View File
@@ -99,7 +99,7 @@ export const useAuthStore = create<AuthState>()(
})
},
}),
{ name: 'PecFlow/Auth' },
{ name: 'PEChub/Auth' },
),
)