feat: added user search to various components

This commit is contained in:
2025-06-01 17:44:48 +02:00
parent 94702834b4
commit ca6037d405
9 changed files with 171 additions and 80 deletions

View File

@@ -2,7 +2,7 @@ export interface Notification {
body: string;
title: string;
recp: {
uname: string | null;
uid: string | null;
room: string | null;
type: "all" | "room" | "uname"
}