Merge pull request '스프링 시큐리티 수정' (#152) from feat/dev_251201 into develop

Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/152
This commit is contained in:
2026-01-05 19:21:31 +09:00

View File

@@ -80,7 +80,7 @@ public class SecurityConfig {
"/v3/api-docs/**") "/v3/api-docs/**")
.permitAll() .permitAll()
// 로그인한 사용자만 가능 IAM // 로그인한 사용자만 가능 IAM
.requestMatchers("/api/user/**", "/api/my/menus") .requestMatchers("/api/user/**", "/api/my/menus", "/api/code/**")
.authenticated() .authenticated()
.anyRequest() .anyRequest()
.access(menuAuthorizationManager) .access(menuAuthorizationManager)