]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/moderation/abuse/abuse-create.model.ts
0e7e9587f7fadeb3d5a9562c5ae21b0ba435454c
[github/Chocobozzz/PeerTube.git] / shared / models / moderation / abuse / abuse-create.model.ts
1 import { AbusePredefinedReasonsString } from './abuse-reason.model'
2
3 export interface AbuseCreate {
4 reason: string
5
6 predefinedReasons?: AbusePredefinedReasonsString[]
7
8 account?: {
9 id: number
10 }
11
12 video?: {
13 id: number
14 startAt?: number
15 endAt?: number
16 }
17
18 comment?: {
19 id: number
20 }
21 }