Introduce Angular Chat Component with SSE integration for real-time updates.

This commit is contained in:
2026-07-19 00:22:54 +02:00
parent 04ca05cd14
commit aa0c61cf5e
8 changed files with 119 additions and 1 deletions
+4
View File
@@ -198,6 +198,10 @@ export const routes: Routes = [
path: 'community',
loadComponent: () => import('./pages/altitude/community/community.component').then(m => m.CommunityComponent)
},
{
path: 'chat',
loadComponent: () => import('./pages/altitude/chat/chat.component').then(m => m.ChatComponent)
},
{
path: 'nicknames',
loadComponent: () => import('./pages/reference/nicknames/nicknames.component').then(m => m.NicknamesComponent)