PsHooN7979
07-31
240731 박세훈 security 수정
@5a2c24d2476afaf299937b45b539cc60b052578a
--- src/main/java/com/takensoft/ai_lms/common/confing/SecurityConfig.java
+++ src/main/java/com/takensoft/ai_lms/common/confing/SecurityConfig.java
... | ... | @@ -82,7 +82,8 @@ |
82 | 82 |
.requestMatchers("/photo/**").permitAll() |
83 | 83 |
.requestMatchers("/wordbook/**").permitAll() // 단어장 정보 진입 허용 |
84 | 84 |
.requestMatchers("/word/**").permitAll() // 단어 정보 진입 허용 |
85 |
- .requestMatchers("/survey/**").permitAll() |
|
85 |
+ .requestMatchers("/survey/**").permitAll() // 설문 조사 진입 허용 |
|
86 |
+ .requestMatchers("/api/**").permitAll() // Google Cloud api 진입 허용 |
|
86 | 87 |
.anyRequest().authenticated()); // 나머지 경로는 인증 필요 |
87 | 88 |
|
88 | 89 |
// jwt 필터 처리 적용 |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?