-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.7.1
-
Fix Version/s: 3.8.0
-
Component/s: Browse Storage, Content Selectors
-
Labels:
The following content selector will allow you to upload artifacts under "/com/bar/"
path =~ "/com/bar/.*"
But it will not allow you to see the uploaded content in the tree view. In order for that to work you need to leave the first slash off the path:
path =~ "com/bar/.*"
But even then, you won't be able to traverse into "bar" in the tree view due to the slash in front of it.
To allow for both the tree view and read/write to work you need:
path =~ "/?com/?bar.*"
The tree view should respect the same content selectors that repository content uses.
- relates
-
NEXUS-16703 Content selectors based on negative regular expressions do not handle leading slashes in a consistent manner
-
- Closed
-