Skip to content

Commit

Permalink
[COZY-161] Hotfix/cozy 161 3 (#34)
Browse files Browse the repository at this point in the history
* [COZY-61] refactor: jwtFilter 로직 수정

* [COZY-61] refactor: TokenResponse 통일

* [COZY-161] refactor: 임시 멤버 생성시 response 변경

* [COZY-161] refactor: 서브모듈 최신화

* [COZY-161] refactor: 오류 해결을 위한 log 추가

* [COZY-161] refactor: 오류 해결을 위한 log 추가

* [COZY-161] refactor: 오류 해결을 위한 log 추가

* [COZY-161] refactor: cors allow origin 변경
  • Loading branch information
genius00hwan authored Aug 8, 2024
1 parent fb2232d commit 04ac9db
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ public SecurityFilterChain filterChain(HttpSecurity httpSecurity) throws Excepti
@Override
public CorsConfiguration getCorsConfiguration(HttpServletRequest request) {
CorsConfiguration configuration = new CorsConfiguration();

configuration.setAllowedOrigins(Collections.singletonList("https://cozymate.store/"));
configuration.setAllowedOrigins(Collections.singletonList("*"));
configuration.setAllowedMethods(Collections.singletonList("*"));
configuration.setAllowCredentials(true);
configuration.setAllowedHeaders(Collections.singletonList("*"));
Expand Down

0 comments on commit 04ac9db

Please sign in to comment.