Merge pull request 'my menus 권한 수정' (#151) from feat/dev_251201 into develop

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

View File

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