feat(phase3): forum channels + tags + card UI

This commit is contained in:
2026-06-30 10:44:52 -04:00
parent f3f03df710
commit 368172e3d6
12 changed files with 407 additions and 87 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
import { create } from 'zustand';
import { api } from '../lib/api.ts';
export type ChannelType = 'text' | 'voice';
export type ChannelType = 'text' | 'voice' | 'forum';
export interface Channel {
id: string;
@@ -10,6 +10,7 @@ export interface Channel {
type: ChannelType;
category: string | null;
position: number;
slowmode_seconds?: number;
}
interface ChannelState {