Skip to content

Commit

Permalink
refactor: api 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Jan 6, 2025
1 parent 09f5cfa commit 92afe44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.authorizeHttpRequests(
authorize ->
authorize
.requestMatchers("/api/v1/users/kakao/login", "api/v1/users/kakao/register", "api/v1/users/kakao/link", "api/v1/users/kakao/auth", "/api/v1/users/apply", "/api/v1/users/email", "/api/v1/users/refresh").permitAll()
.requestMatchers("/api/v1/users/kakao/login", "api/v1/users/kakao/register", "api/v1/users/kakao/link", "/api/v1/users/apply", "/api/v1/users/email", "/api/v1/users/refresh").permitAll()
.requestMatchers("/health-check").permitAll()
.requestMatchers("/admin", "/admin/login", "/admin/account", "/admin/meeting", "/admin/member", "/admin/penalty",
"/js/**", "/img/**", "/scss/**", "/vendor/**").permitAll()
Expand Down

0 comments on commit 92afe44

Please sign in to comment.