aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/moderation/abuse/abuse-state.model.ts
blob: 5582d73c4c5d32626950646ce1f16acec5facb6c (plain) (blame)
1
2
3
4
5
6
7
export const AbuseState = {
  PENDING: 1,
  REJECTED: 2,
  ACCEPTED: 3
} as const

export type AbuseStateType = typeof AbuseState[keyof typeof AbuseState]