-
Notifications
You must be signed in to change notification settings - Fork 244
Open
Labels
Description
Is your feature request related to a problem? Please describe.
When you upload a video to Youtube, you can set the visibility of it to Public, Private, or Unlisted. I'm basically looking for that Unlisted feature here. ie. Be able to create folders that do not show up on the UI or search for discovery, but you can still access the content if you have the link to it.
Describe the solution you'd like
A possible implementation is to treat folders' whose name starts with . or _ as unlisted. And of course, this feature will be behind a feature toggle.
Can introduce a couple new options in config.json such as:
Gallery.enableUnlistedDirectories (boolean; default to false): Enable having unlisted directories (doesn't show up in UI or search).
Gallery.unlistedDirectoryPrefix (string; default to "_"): When Gallery.enableUnlistedDirectories is enabled, directories whose name starts with this string will be treated as unlisted.
ashwin-pc