feat: myinfo

This commit is contained in:
2025-12-24 12:37:32 +09:00
parent 08aa35f9e8
commit 5d297ba456
6 changed files with 198 additions and 0 deletions

View File

@@ -77,8 +77,12 @@ public class SecurityConfig {
"/api/members/*/password",
"/v3/api-docs/**")
.permitAll()
// 로그인한 사용자만 가능
.requestMatchers("/api/user/**")
.authenticated()
.anyRequest()
// .access(redisAuthorizationManager)
.authenticated())
.addFilterBefore(
jwtAuthenticationFilter,