Skip to content

Commit

Permalink
Merge branch 'develop' into feature/#367
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwp031 committed Jul 26, 2024
2 parents 1b9d6c5 + 58a041a commit 70e65b3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ public static CorsConfigurationSource apiConfigurationSource() {
ArrayList<String> allowedHttpMethods = new ArrayList<>();
allowedHttpMethods.add("GET");
allowedHttpMethods.add("POST");
allowedHttpMethods.add("PUT");
allowedHttpMethods.add("PATCH");
allowedHttpMethods.add("DELETE");

configuration.setAllowedOrigins(allowedOriginPatterns);
configuration.setAllowedMethods(allowedHttpMethods);
Expand Down

0 comments on commit 70e65b3

Please sign in to comment.