Allow users to view and manage the list of users they have blocked. This feature is essential for user safety, privacy, and giving users control over their social experience.

Blocked Users List

View all users you have blocked, including their display name, avatar, and user ID.

Privacy & Control

Only users you have blocked are shown. Inactive or deleted users are excluded.
You can only view users you have blocked—not users who have blocked you. Blocked users that are inactive or deleted will not appear in your list.

Product Behavior

  • The blocked users list displays:
    • User ID
    • Display Name
    • Avatar
    • Other relevant user information
  • Only active users you have blocked are shown
  • You cannot see users who have blocked you

Get Blocked Users List

// Observe blocked users list
let token = userRepository.getBlockedUsers().observe { liveCollection, _, error in
    // Handle liveCollection (list of blocked users)
    // Handle error if needed
}

Best Practices