Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p authored Oct 22, 2024
1 parent da7e7b1 commit 2e12236
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected SecurityFilterChain configure(HttpSecurity httpSecurity) throws Except

.authorizeHttpRequests(authorize -> authorize
.requestMatchers("/auth/**", "/swagger-ui/**", "/v3/**").permitAll()
.requestMatchers(HttpMethod.GET, "/library/{libraryId}/public").permitAll()
.requestMatchers(HttpMethod.GET, "/library/{libraryId}/public", "/resume/student/{resumeId}").permitAll()
.anyRequest().authenticated()
)

Expand Down

0 comments on commit 2e12236

Please sign in to comment.