about summary refs log tree commit diff
path: root/src/lib/moderation/blocked-and-muted.ts
blob: 9806ca83ad3ffa6f335ddcdd71c351bc439e9cf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
import type * as bsky from '#/types/bsky'

export function isBlockedOrBlocking(profile: bsky.profile.AnyProfileView) {
  return profile.viewer?.blockedBy || profile.viewer?.blocking
}

export function isMuted(profile: bsky.profile.AnyProfileView) {
  return profile.viewer?.muted || profile.viewer?.mutedByList
}