Skip to content

Commit

Permalink
Merge pull request #481 from Kernel360/test
Browse files Browse the repository at this point in the history
test:배포
  • Loading branch information
I-migi authored Nov 27, 2024
2 parents 661a33e + 9522d15 commit 3725a91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ public SecurityFilterChain clubFilterChain(HttpSecurity http) throws Exception {
.permitAll()
.requestMatchers(HttpMethod.GET, "/v1/clubs/{clubToken}/leagues/date")
.permitAll()
.requestMatchers(HttpMethod.GET, "/v1/clubs", "/v1/clubs/{clubToken}", "/v1/clubs/search",
"/v2/**").permitAll()
.requestMatchers(HttpMethod.GET, "/v1/clubs", "/v1/clubs/{clubToken}", "/v1/clubs/search", "/v2/**")
.permitAll()
.requestMatchers(HttpMethod.POST, "/v1/clubs")
.permitAll()
.requestMatchers(HttpMethod.DELETE, "/v1/clubs/{clubToken}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ public void changeLeagueStatusJob() {
} catch (Exception exception) {
log.error(exception.getMessage(), exception);
}

}
}

0 comments on commit 3725a91

Please sign in to comment.