diff options
Diffstat (limited to 'shared/models/videos/video-abuse.model.ts')
-rw-r--r-- | shared/models/videos/video-abuse.model.ts | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/shared/models/videos/video-abuse.model.ts b/shared/models/videos/video-abuse.model.ts index aaedd00d4..51070a7a3 100644 --- a/shared/models/videos/video-abuse.model.ts +++ b/shared/models/videos/video-abuse.model.ts | |||
@@ -1,10 +1,14 @@ | |||
1 | import { Account } from '../actors' | ||
2 | |||
1 | export interface VideoAbuse { | 3 | export interface VideoAbuse { |
2 | id: number | 4 | id: number |
3 | reason: string | 5 | reason: string |
4 | reporterUsername: string | 6 | reporterAccount: Account |
5 | reporterServerHost: string | 7 | video: { |
6 | videoId: number | 8 | id: number |
7 | videoUUID: string | 9 | name: string |
8 | videoName: string | 10 | uuid: string |
11 | url: string | ||
12 | } | ||
9 | createdAt: Date | 13 | createdAt: Date |
10 | } | 14 | } |