Chocobozzz/PeerTube

View on GitHub
packages/models/src/moderation/server-block.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Account } from '../actors/index.js'

export interface ServerBlock {
  byAccount: Account
  blockedServer: {
    host: string
  }
  createdAt: Date | string
}