Skip to content

Commit

Permalink
credential 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pkl0912 committed Sep 6, 2024
1 parent 06031fa commit eb5d555
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void addCorsMappings(final CorsRegistry registry) {
.allowedOriginPatterns("*")
.allowedMethods(HttpMethod.GET.name(), HttpMethod.POST.name(), HttpMethod.PUT.name(), HttpMethod.DELETE.name(), HttpMethod.OPTIONS.name())
.allowedHeaders("Authorization", "Content-Type", "userId")
.allowCredentials(true)
.allowCredentials(false)
.maxAge(3000);
}
}

0 comments on commit eb5d555

Please sign in to comment.