This commit is contained in:
Bryan1029384756
2026-02-18 10:16:12 -06:00
parent ce9902d95d
commit ff269ee154
19 changed files with 583 additions and 64 deletions

View File

@@ -146,6 +146,7 @@ export const getAll = query({
const grouped: Record<string, Array<{
userId: string;
username: string;
displayName: string | null;
isMuted: boolean;
isDeafened: boolean;
isScreenSharing: boolean;
@@ -169,6 +170,7 @@ export const getAll = query({
(grouped[s.channelId] ??= []).push({
userId: s.userId,
username: s.username,
displayName: user?.displayName || null,
isMuted: s.isMuted,
isDeafened: s.isDeafened,
isScreenSharing: s.isScreenSharing,