Skip to content

Commit

Permalink
Authorization only for urls with /api/opa/
Browse files Browse the repository at this point in the history
  • Loading branch information
pidoubleyou committed Sep 26, 2024
1 parent 6e0c809 commit 25f9f56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class ArteHttpClient {

private static Request createRequest(String aUrl) {
Builder b;
if (aUrl.contains("/opa/")) {
if (aUrl.contains("/api/opa/")) {
b = BUILDER_OPA;
} else {
b = BUILDER;
Expand Down

0 comments on commit 25f9f56

Please sign in to comment.