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

@@ -51,6 +51,7 @@ export const getChannelMembers = query({
members.push({
id: user._id,
username: user.username,
displayName: user.displayName || null,
status: user.status || "offline",
roles: roles.sort((a, b) => b.position - a.position),
avatarUrl,
@@ -77,6 +78,7 @@ export const listAll = query({
results.push({
id: user._id,
username: user.username,
displayName: user.displayName || null,
status: user.status || "offline",
avatarUrl,
});