feat: Add friend functionality and refactor user context menus

This commit is contained in:
2026-06-28 20:12:39 +07:00
parent e10e002593
commit 851b696f67
11 changed files with 306 additions and 105 deletions
+1
View File
@@ -41,6 +41,7 @@ export interface IpcRequests {
"user:search": (query: string) => IpcResult<UserProfile[]>;
"friends:list": () => IpcResult<UserProfile[]>;
"friends:add": (userId: string) => IpcResult<void>;
"friends:unfriend": (userId: string) => IpcResult<void>;
"friends:invite": (p: { userId: string; instanceLocation: string }) => IpcResult<void>;
"friends:requestInvite": (userId: string) => IpcResult<void>;