Skip to content

Commit e4640ff

Browse files
committed
Update WebSecurityConfig.java
1 parent c4cfd51 commit e4640ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/jobboard-backend/src/main/java/org/bounswe/jobboardbackend/auth/security/WebSecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
7474
)
7575
.authorizeHttpRequests(auth -> auth
7676
.requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
77-
.requestMatchers("/api/auth/login/verify","/api/auth/login", "/api/auth/register", "/api/auth/verify-email", "/api/auth/password-reset/**", "/v3/api-docs/**", "/swagger-ui/**", "/error").permitAll()
77+
.requestMatchers("/api/auth/login/verify","/api/auth/login", "/api/auth/register", "/api/auth/verify-email", "/api/auth/password-reset/**", "/v3/api-docs/**", "/swagger-ui/**", "/error","/ws-chat/**").permitAll()
7878
.requestMatchers("/api/public/**").permitAll()
7979
.anyRequest().permitAll()
8080
)

0 commit comments

Comments
 (0)