1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00
Peertube/shared/models/videos/video-schedule-update.model.ts
2018-06-15 18:20:56 +02:00

6 lines
216 B
TypeScript

import { VideoPrivacy } from './video-privacy.enum'
export interface VideoScheduleUpdate {
updateAt: Date | string
privacy?: VideoPrivacy.PUBLIC | VideoPrivacy.UNLISTED // Cannot schedule an update to PRIVATE
}