feat(phase3): forum channels + tags + card UI
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user