마케팅 트래킹

- 복합키를 AUTO_INCREMENT의 단일키로 변경
- AppLaunch 트래킹 추가
This commit is contained in:
2025-03-26 13:09:09 +09:00
parent ba9c71a4ec
commit c466ecb77c
7 changed files with 67 additions and 42 deletions

View File

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