We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c055b5 + c7dcca1 commit 5b7ae3cCopy full SHA for 5b7ae3c
backend/src/main/java/com/ai/lawyer/global/security/SecurityConfig.java
@@ -47,6 +47,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
47
.requestMatchers("/api/law/**").permitAll()
48
.requestMatchers("/api/law-word/**").permitAll()
49
.requestMatchers("/h2-console/**").permitAll()
50
+ .requestMatchers("/api/chat/**").authenticated()
51
.anyRequest().authenticated()
52
)
53
// JWT 필터 추가
0 commit comments