파일관리 기능 api 커밋

This commit is contained in:
2026-04-06 17:36:19 +09:00
parent bd6fe924de
commit 260569225c
2 changed files with 126 additions and 1 deletions

View File

@@ -137,6 +137,6 @@ public class SecurityConfig {
/** 완전 제외(필터 자체를 안 탐) */
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return (web) -> web.ignoring().requestMatchers("/api/mapsheet/**");
return (web) -> web.ignoring().requestMatchers("/api/mapsheet/**", "/api/file-manager/**");
}
}