라이브 메인

- 로그인 없이 조회 가능하도록 수정
This commit is contained in:
2025-03-22 06:10:28 +09:00
parent 0764247447
commit 6dd6be183b
4 changed files with 30 additions and 18 deletions

View File

@@ -81,6 +81,10 @@ class SecurityConfig(
.antMatchers(HttpMethod.GET, "/faq").permitAll()
.antMatchers(HttpMethod.GET, "/faq/category").permitAll()
.antMatchers("/audition").permitAll()
.antMatchers("/live/recommend/channel").permitAll()
.antMatchers(HttpMethod.GET, "/live/room").permitAll()
.antMatchers(HttpMethod.GET, "/event").permitAll()
.antMatchers(HttpMethod.GET, "/live/recommend").permitAll()
.anyRequest().authenticated()
.and()
.build()