]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-change-ownership.model.ts
Add hls support on server
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-change-ownership.model.ts
CommitLineData
74d63469
GR
1import { Account } from '../actors'
2
3export interface VideoChangeOwnership {
4 id: number
5 status: VideoChangeOwnershipStatus
6 initiatorAccount: Account
7 nextOwnerAccount: Account
8 video: {
9 id: number
10 name: string
11 uuid: string
12 url: string
13 }
14 createdAt: Date
15}
16
17export enum VideoChangeOwnershipStatus {
18 WAITING = 'WAITING',
19 ACCEPTED = 'ACCEPTED',
20 REFUSED = 'REFUSED'
21}