Skip to content

Commit 5b7ae3c

Browse files
authored
Merge pull request #114 from yongho9064/security/ai
chore[security]: /api/chat/** 추가
2 parents 8c055b5 + c7dcca1 commit 5b7ae3c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/src/main/java/com/ai/lawyer/global/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
4747
.requestMatchers("/api/law/**").permitAll()
4848
.requestMatchers("/api/law-word/**").permitAll()
4949
.requestMatchers("/h2-console/**").permitAll()
50+
.requestMatchers("/api/chat/**").authenticated()
5051
.anyRequest().authenticated()
5152
)
5253
// JWT 필터 추가

0 commit comments

Comments
 (0)