Chocobozzz/PeerTube

View on GitHub
packages/models/src/moderation/abuse/abuse-state.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const AbuseState = {
  PENDING: 1,
  REJECTED: 2,
  ACCEPTED: 3
} as const

export type AbuseStateType = typeof AbuseState[keyof typeof AbuseState]