Skip to content

Commit

Permalink
📝 SecurityConfig 에 AI 통신 api 의 엔드포인트를 process_image 에서 process 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuuuuk committed Dec 15, 2023
1 parent 3eab815 commit c650cb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/recyclables").authenticated()
.antMatchers(HttpMethod.GET, "/recyclables/search").authenticated()
.antMatchers(HttpMethod.GET, "/recyclables/all").authenticated()
.antMatchers(HttpMethod.POST, "/recyclables/process_image").authenticated()
.antMatchers(HttpMethod.POST, "/recyclables/process").authenticated()

.antMatchers(HttpMethod.POST, "/notification/save/{deviceToken}").authenticated()
.antMatchers(HttpMethod.GET, "/notification/{id}").authenticated()
Expand Down

0 comments on commit c650cb4

Please sign in to comment.