diff options
Diffstat (limited to 'shared/models')
-rw-r--r-- | shared/models/videos/video-change-ownership.model.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/shared/models/videos/video-change-ownership.model.ts b/shared/models/videos/video-change-ownership.model.ts index 0d735c798..a9b1a17f3 100644 --- a/shared/models/videos/video-change-ownership.model.ts +++ b/shared/models/videos/video-change-ownership.model.ts | |||
@@ -1,16 +1,12 @@ | |||
1 | import { Account } from '../actors' | 1 | import { Account } from '../actors' |
2 | import { Video } from './video.model' | ||
2 | 3 | ||
3 | export interface VideoChangeOwnership { | 4 | export interface VideoChangeOwnership { |
4 | id: number | 5 | id: number |
5 | status: VideoChangeOwnershipStatus | 6 | status: VideoChangeOwnershipStatus |
6 | initiatorAccount: Account | 7 | initiatorAccount: Account |
7 | nextOwnerAccount: Account | 8 | nextOwnerAccount: Account |
8 | video: { | 9 | video: Video |
9 | id: number | ||
10 | name: string | ||
11 | uuid: string | ||
12 | url: string | ||
13 | } | ||
14 | createdAt: Date | 10 | createdAt: Date |
15 | } | 11 | } |
16 | 12 | ||