Skip to content

Commit

Permalink
Add clause for /metadata in shouldBePublic
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyNava committed Sep 13, 2024
1 parent 612e0d2 commit 6eee84d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,11 @@ private boolean shouldBePublic(String requestUri) {
return true;
}

if (requestUri.endsWith("/metadata")) {
log.debug("metadata requested");
return true;
}

return false;
}

Expand Down

0 comments on commit 6eee84d

Please sign in to comment.