Simple Managment webapp [LLM]

This commit is contained in:
2025-12-03 19:38:15 +01:00
parent 3ed323e056
commit 6090319b5f
10 changed files with 468 additions and 31 deletions

View File

@@ -18,10 +18,10 @@ export interface Message {
export interface MessageListParams {
after?: string;
before?: string;
channel?: string;
priority?: number;
channel_id?: string[];
priority?: number[];
search?: string;
sender?: string;
sender?: string[];
subscription_status?: 'all' | 'confirmed' | 'unconfirmed';
trimmed?: boolean;
page_size?: number;