diff options
Diffstat (limited to 'shared/models/videos/change-ownership/video-change-ownership.model.ts')
-rw-r--r-- | shared/models/videos/change-ownership/video-change-ownership.model.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shared/models/videos/change-ownership/video-change-ownership.model.ts b/shared/models/videos/change-ownership/video-change-ownership.model.ts new file mode 100644 index 000000000..3d31cad0a --- /dev/null +++ b/shared/models/videos/change-ownership/video-change-ownership.model.ts | |||
@@ -0,0 +1,17 @@ | |||
1 | import { Account } from '../../actors' | ||
2 | import { Video } from '../video.model' | ||
3 | |||
4 | export interface VideoChangeOwnership { | ||
5 | id: number | ||
6 | status: VideoChangeOwnershipStatus | ||
7 | initiatorAccount: Account | ||
8 | nextOwnerAccount: Account | ||
9 | video: Video | ||
10 | createdAt: Date | ||
11 | } | ||
12 | |||
13 | export const enum VideoChangeOwnershipStatus { | ||
14 | WAITING = 'WAITING', | ||
15 | ACCEPTED = 'ACCEPTED', | ||
16 | REFUSED = 'REFUSED' | ||
17 | } | ||