Skip to content

Commit

Permalink
Merge pull request #378 from Team-Sopetit/deploy/chan/#374
Browse files Browse the repository at this point in the history
[FIX] 개발 서버 CI/CD
  • Loading branch information
Chan531 authored Jan 30, 2025
2 parents a0a1418 + baa49dd commit f272eaa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/soptie/server/config/SecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ private void authorizeHttpRequests(HttpSecurity http) throws Exception {
.requestMatchers(new AntPathRequestMatcher("/api/v1/versions/client/app")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/api/v2/routines/daily", "GET")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/error")).permitAll()
.requestMatchers(new AntPathRequestMatcher("/actuator/health")).permitAll()
.anyRequest().authenticated()
);
}
Expand Down

0 comments on commit f272eaa

Please sign in to comment.