Skip to content

Commit

Permalink
test:배포
Browse files Browse the repository at this point in the history
  • Loading branch information
I-migi committed Nov 27, 2024
1 parent 4f150ad commit 9522d15
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 9522d15

Please sign in to comment.