Skip to content

Commit

Permalink
[fix] 시큐리티 수정
Browse files Browse the repository at this point in the history
Signed-off-by: seungju.kim <[email protected]>
  • Loading branch information
chimaek committed May 11, 2024
1 parent 46cb720 commit 49e9a22
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.requestMatchers(GRAFANA_WHITE_LIST).permitAll()
.requestMatchers(HttpMethod.GET, "api/v1/article", "api/v2/articles", "api/v2/reviews/**").permitAll()
.requestMatchers(HttpMethod.GET, "api/v2/resumes/**","api/v2/studies").permitAll()
.requestMatchers(HttpMethod.POST, "api/v2/resumes/create").permitAll()
.requestMatchers("/api/v1/admin/**").hasRole("ADMIN")
.requestMatchers(PathRequest.toStaticResources().atCommonLocations()).permitAll()
.anyRequest().authenticated())
Expand Down

0 comments on commit 49e9a22

Please sign in to comment.