]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/moderation/server-block.model.ts
Use 3 tables to represent abuses
[github/Chocobozzz/PeerTube.git] / shared / models / moderation / server-block.model.ts
1 import { Account } from '../actors'
2
3 export interface ServerBlock {
4 byAccount: Account
5 blockedServer: {
6 host: string
7 }
8 createdAt: Date | string
9 }