This website requires JavaScript.
Explore
Help
Sign In
OpenCloud
/
PeerTube
mirror of
https://github.com/Chocobozzz/PeerTube
Watch
1
Star
0
Fork
You've already forked PeerTube
0
Code
Issues
Releases
Wiki
Activity
560605026b
PeerTube
/
shared
/
models
/
videos
/
import
/
video-import-state.enum.ts
7 lines
98 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Reorganize shared models
2020-08-06 14:58:01 +02:00
export
const
enum
VideoImportState
{
Add ability to import video with youtube-dl
2018-08-02 15:34:09 +02:00
PENDING
=
1
,
SUCCESS
=
2
,
Add server plugin filter hooks for import with torrent and url (#2621) * Add server plugin filter hooks for import with torrent and url * WIP: pre and post-import filter hooks * Rebased * Cleanup filters to accept imports Co-authored-by: Chocobozzz <me@florianbigard.com>
2020-05-14 11:10:26 +02:00
FAILED
=
3
,
REJECTED
=
4
Add ability to import video with youtube-dl
2018-08-02 15:34:09 +02:00
}