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.
1 parent 0314355 commit c7dcca1Copy full SHA for c7dcca1
backend/src/main/java/com/ai/lawyer/global/security/SecurityConfig.java
@@ -40,7 +40,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
40
.frameOptions(HeadersConfigurer.FrameOptionsConfig::sameOrigin)
41
)
42
.authorizeHttpRequests(authorize -> authorize
43
- .requestMatchers("/api/auth/**", "/api/public/**", "/api/chat/**").permitAll()
+ .requestMatchers("/api/auth/**", "/api/public/**").permitAll()
44
.requestMatchers("/v3/api-docs/**", "/swagger-ui/**", "/swagger-ui.html").permitAll()
45
.requestMatchers("/api/posts/**").permitAll()
46
.requestMatchers("/api/precedent/**").permitAll()
0 commit comments