]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/videos/video-include.enum.ts
Fix plugin settings manager definition
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-include.enum.ts
index fa720b34897bdbb68c277283a71b41bebd393604..7e16b129a79b716a44a73a10edf45b30a9c89101 100644 (file)
@@ -1,7 +1,7 @@
 export const enum VideoInclude {
   NONE = 0,
   NOT_PUBLISHED_STATE = 1 << 0,
-  HIDDEN_PRIVACY = 1 << 1,
-  BLACKLISTED = 1 << 2,
-  BLOCKED_OWNER = 1 << 3
+  BLACKLISTED = 1 << 1,
+  BLOCKED_OWNER = 1 << 2,
+  FILES = 1 << 3
 }