Skip to content

Commit

Permalink
Update SecurityConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
toshydev authored Aug 11, 2023
1 parent 911a1c8 commit 2bdf471
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.sessionCreationPolicy(SessionCreationPolicy.ALWAYS))
.authorizeHttpRequests(httpRequests ->
httpRequests
.requestMatchers(HttpMethod.GET, "/*").permitAll()
.requestMatchers(HttpMethod.GET, "/**").permitAll()
.requestMatchers(HttpMethod.POST, "/api/user/login").permitAll()
.requestMatchers(HttpMethod.POST, "/api/user/register").permitAll()
.requestMatchers(HttpMethod.POST, "/api/user/logout").permitAll()
Expand Down

0 comments on commit 2bdf471

Please sign in to comment.