Skip to content

Commit

Permalink
FIX typo
Browse files Browse the repository at this point in the history
  • Loading branch information
culmat committed Apr 18, 2024
1 parent fca3ccd commit f9d2a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/baloise/azure/FunctionalOrgEndpoint.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public HttpResponseMessage v1(
try {
List<String> path = asList(request.getUri().getPath().split("/"));
path = path.subList(path.indexOf("V1")+1, path.size());
if("~rolesSchemes".equals(path.get(0))) {
if("~roleSchemes".equals(path.get(0))) {
return createJSONResponse(request, Map.of("default", graph().getDefaultRoleScheme(), "roleSchemes", graph().getRoleSchemes()));
} else if("~avatar".equals(path.get(0))) {
return createAvatarResponse(request, path.get(1));
Expand Down

0 comments on commit f9d2a35

Please sign in to comment.