Merge pull request '라벨링 툴 API security 추가' (#191) from feat/infer_dev_260107 into develop

Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/191
This commit is contained in:
2026-01-12 15:43:56 +09:00

View File

@@ -86,7 +86,11 @@ public class SecurityConfig {
"/api/upload/chunk-upload-complete")
.permitAll()
// 로그인한 사용자만 가능 IAM
.requestMatchers("/api/user/**", "/api/my/menus", "/api/code/**")
.requestMatchers(
"/api/user/**",
"/api/my/menus",
"/api/code/**",
"/api/training-data/label/**")
.authenticated()
.anyRequest()
.access(menuAuthorizationManager)