FR: Support Multiple Scopes per Source via Whitelist or Blacklist
Is your feature request related to a problem? Please describe.
Currently, it is not possible to define multiple scopes within a single source using either a whitelist or blacklist
Describe the solution you'd like
I would like the ability to specify multiple Scopes via CSV
Example structure:
Describe alternatives you've considered
Maybe allow multi list:
SRC1: FOLDER1 SRC1: FOLDER_A\FOLDER_B
SRC2: FOLDER2 SRC2: FOLDER_C\FOLDER_D SRC2: FOLDER_E\FOLDER_F\FOLDER_G
Additional context Currently I'm solving this by regex but its so dificult for wihite list access to:
- root/subfolder_a/subfolder_b/subfolder_c
- root/subfolder_a/subfolder_e/subfolder_f/subfolder_g/subfolder_k
Regex, Allow: (?i)^/root(/subfolder_a(/subfolder_b(/subfolder_c)?)?)?$ Regex, Allow: (?i)^/root/(subfolder_a/(subfolder_b/(subfolder_c/)?)?)?$ Regex, Allow: (?i)^/root/subfolder_a/subfolder_b/subfolder_c
Regex, Allow: (?i)^/root(/subfolder_a(/subfolder_e(/subfolder_f(/subfolder_g(/subfolder_k)?)?)?)?)?$ Regex, Allow: (?i)^/root/(subfolder_a/(subfolder_e/(subfolder_f/(subfolder_g/(subfolder_k/)?)?)?)?)?$ Regex, Allow: (?i)^/root/subfolder_a/subfolder_e/subfolder_f/subfolder_g/subfolder_k
I think this is similar to the existing feature request, definitely will be coming.
This is planned for the next major release.
this is marked done as completed by https://github.com/gtsteffaniak/filebrowser/issues/342