Skip to content

Commit

Permalink
Merge pull request #67 from oven-2023/feature/auth
Browse files Browse the repository at this point in the history
fix: edit security config
  • Loading branch information
haen-su authored Nov 14, 2023
2 parents aa3cb63 + 62c9164 commit 65672db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/oven/server/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain configure(HttpSecurity httpSecurity) throws Exception
.and()
.authorizeHttpRequests()
.requestMatchers(swagger).permitAll()
.requestMatchers(HttpMethod.POST, "/auth/**").permitAll()
.requestMatchers("/auth/**").permitAll()
.requestMatchers("/ws/endpoint").permitAll()
.anyRequest().authenticated()

Expand Down

0 comments on commit 65672db

Please sign in to comment.