Skip to content

Commit

Permalink
[BE] 테스트 서버 배포 (#734)
Browse files Browse the repository at this point in the history
* feat: github OAuth 간소화 (#731)

* [BE] CORS 추가 (#733)

* feat: github OAuth 간소화

* feat: github OAuth 간소화
  • Loading branch information
koust6u authored Oct 8, 2024
1 parent 7cf9850 commit 747a3a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void addCorsMappings(final CorsRegistry registry) {
registry.addMapping("/**")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH", "HEAD")
.allowedOrigins("http://localhost:3000", "https://coduo.site", "https://test.coduo.site",
"https://api-test.coduo.site", "https://api.coduo.site")
"https://api-test.coduo.site", "https://api.coduo.site", "https://www.github.com")
.allowCredentials(true);
}
}

0 comments on commit 747a3a4

Please sign in to comment.