Skip to content
Snippets Groups Projects
Commit 2c688b49 authored by Mirco Nasuti's avatar Mirco Nasuti
Browse files

bugfix FilesAPI

parent bb331f3d
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ public class FilesAPI {
private SecurityConfiguration securityConfiguration;
@ApiOperation(value = "Get protected files")
@RequestMapping(value = "/{filename}" , method = RequestMethod.GET)
@RequestMapping(value = "/{filename:.+}" , method = RequestMethod.GET)
public ResponseEntity<Void> getProtectedFile(
@ApiParam(value = "filename", required = true) @PathVariable("filename") String filename
) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment