feat(privacy): support nobody option for group invites
Some checks are pending
CI / test (push) Has started running

This commit is contained in:
2026-03-08 20:32:29 +03:00
parent 362098b954
commit 4122882b7e
6 changed files with 8 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ interface UserProfileUpdatePayload {
privacy_private_messages?: "everyone" | "contacts" | "nobody";
privacy_last_seen?: "everyone" | "contacts" | "nobody";
privacy_avatar?: "everyone" | "contacts" | "nobody";
privacy_group_invites?: "everyone" | "contacts";
privacy_group_invites?: "everyone" | "contacts" | "nobody";
}
export async function updateMyProfile(payload: UserProfileUpdatePayload): Promise<AuthUser> {