aboutsummaryrefslogblamecommitdiffhomepage
path: root/shared/models/moderation/block-status.model.ts
blob: 597312757bcdf46a74d023fc6b4e115f46778bba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                              
export interface BlockStatus {
  accounts: {
    [ handle: string ]: {
      blockedByServer: boolean
      blockedByUser?: boolean
    }
  }

  hosts: {
    [ host: string ]: {
      blockedByServer: boolean
      blockedByUser?: boolean
    }
  }
}