feat: block and unblock events

This commit is contained in:
Zamitto
2024-07-25 20:08:53 -03:00
parent 304aa011ad
commit edf920fed3
9 changed files with 55 additions and 3 deletions

View File

@@ -128,6 +128,8 @@ declare global {
/* User */
getUser: (userId: string) => Promise<UserProfile | null>;
blockUser: (userId: string) => Promise<void>;
unblockUser: (userId: string) => Promise<void>;
getUserFriends: (
userId: string,
take: number,