]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/moderation/server-block.model.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / moderation / server-block.model.ts
CommitLineData
7ad9b984
C
1import { Account } from '../actors'
2
3export interface ServerBlock {
4 byAccount: Account
af5767ff 5 blockedServer: {
7ad9b984
C
6 host: string
7 }
8 createdAt: Date | string
9}