]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/objects/abuse-object.ts
Use 3 tables to represent abuses
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / objects / abuse-object.ts
1 import { ActivityFlagReasonObject } from './common-objects'
2
3 export interface AbuseObject {
4 type: 'Flag'
5 content: string
6 object: string | string[]
7
8 tag?: ActivityFlagReasonObject[]
9
10 startAt?: number
11 endAt?: number
12 }