mirror of https://github.com/Chocobozzz/PeerTube
fix change ownership typing
parent
4ee63ec648
commit
b8b3abac6a
|
@ -1,7 +1,7 @@
|
|||
import { VideoChangeOwnershipModel } from '@server/models/video/video-change-ownership'
|
||||
import { PickWith } from '@shared/core-utils'
|
||||
import { MAccountDefault, MAccountFormattable } from '../account/account'
|
||||
import { MVideo, MVideoWithAllFiles } from './video'
|
||||
import { MVideoWithAllFiles, MVideoFormattable } from './video'
|
||||
|
||||
type Use<K extends keyof VideoChangeOwnershipModel, M> = PickWith<VideoChangeOwnershipModel, K, M>
|
||||
|
||||
|
@ -23,4 +23,4 @@ export type MVideoChangeOwnershipFormattable =
|
|||
Pick<MVideoChangeOwnership, 'id' | 'status' | 'createdAt'> &
|
||||
Use<'Initiator', MAccountFormattable> &
|
||||
Use<'NextOwner', MAccountFormattable> &
|
||||
Use<'Video', Pick<MVideo, 'id' | 'uuid' | 'url' | 'name'>>
|
||||
Use<'Video', MVideoFormattable>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
import { Account } from '../actors'
|
||||
import { Video } from './video.model'
|
||||
|
||||
export interface VideoChangeOwnership {
|
||||
id: number
|
||||
status: VideoChangeOwnershipStatus
|
||||
initiatorAccount: Account
|
||||
nextOwnerAccount: Account
|
||||
video: {
|
||||
id: number
|
||||
name: string
|
||||
uuid: string
|
||||
url: string
|
||||
}
|
||||
video: Video
|
||||
createdAt: Date
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue