]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-include.enum.ts
Update credits
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-include.enum.ts
CommitLineData
2760b454
C
1export const enum VideoInclude {
2 NONE = 0,
3 NOT_PUBLISHED_STATE = 1 << 0,
4 HIDDEN_PRIVACY = 1 << 1,
5 BLACKLISTED = 1 << 2,
3c10840f
C
6 BLOCKED_OWNER = 1 << 3,
7 FILES = 1 << 4
2760b454 8}