Chocobozzz/PeerTube

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

Summary

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

export interface AccountBlock {
  byAccount: Account
  blockedAccount: Account
  createdAt: Date | string
}