3.0 Beta 4

This commit is contained in:
2026-04-11 17:23:19 +02:00
parent 7e5ea20409
commit 62bc82f158
44 changed files with 860 additions and 51 deletions

View File

@@ -7,6 +7,8 @@ import {authNeededGuard} from './guards/auth-needed-guard';
import {Homepage} from './homepage/homepage';
import {Privacy} from './privacy/privacy';
import {TOS} from './tos/tos';
import {Network} from './chat/network/network';
import {Text} from './chat/network/channel/text/text';
export const routes: Routes = [
{path: '', component: Homepage},
@@ -16,6 +18,11 @@ export const routes: Routes = [
{
path: 'chat', component: Chat, canActivate: [authNeededGuard], children: [
{path: 'dm/:chatid', component: Dm},
{
path: 'network/:networkId', component: Network, children: [
{path: ":categoryId/:channelId", component: Text}
]
},
]
},
];