Started implementing Chatenium Pictures

This commit is contained in:
2026-04-12 17:40:51 +02:00
parent 62bc82f158
commit c56b0aab8a
17 changed files with 332 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ import {Privacy} from './privacy/privacy';
import {TOS} from './tos/tos';
import {Network} from './chat/network/network';
import {Text} from './chat/network/channel/text/text';
import {See} from './chat/picture/see/see';
export const routes: Routes = [
{path: '', component: Homepage},
@@ -18,6 +19,7 @@ export const routes: Routes = [
{
path: 'chat', component: Chat, canActivate: [authNeededGuard], children: [
{path: 'dm/:chatid', component: Dm},
{path: 'picture/:uploaderId', component: See},
{
path: 'network/:networkId', component: Network, children: [
{path: ":categoryId/:channelId", component: Text}