feat: Allow admin to create new text channels

This commit is contained in:
2026-03-30 01:25:56 +02:00
parent 109402cdd6
commit 83694570e3
24 changed files with 563 additions and 64 deletions

View File

@@ -1,3 +1,5 @@
import type { Channel } from '../../../shared-kernel';
export type ServerEndpointStatus = 'online' | 'offline' | 'checking' | 'unknown' | 'incompatible';
export interface ServerInfo {
@@ -14,6 +16,7 @@ export interface ServerInfo {
hasPassword?: boolean;
isPrivate: boolean;
tags?: string[];
channels?: Channel[];
createdAt: number;
sourceId?: string;
sourceName?: string;