feat: 최근 공지사항 API 추가

This commit is contained in:
2025-07-25 21:42:31 +09:00
parent fcb2ca1917
commit 2659adb7a9
2 changed files with 4 additions and 0 deletions

View File

@@ -92,6 +92,7 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/event").permitAll()
.antMatchers(HttpMethod.GET, "/live/recommend").permitAll()
.antMatchers("/ad-tracking/app-launch").permitAll()
.antMatchers(HttpMethod.GET, "/notice/latest").permitAll()
.anyRequest().authenticated()
.and()
.build()