Skip to content

Commit

Permalink
fix(security): add pushToken api to permit
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaerim1001 committed Nov 15, 2023
1 parent 1efbe26 commit 61f1b69
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
http
.authorizeHttpRequests(
authorize -> authorize
.requestMatchers(POST, "/v1/member", "/v1/auth/phone/**", "/v1/auth/refresh").permitAll()
.requestMatchers(POST, "/v1/member", "/v1/auth/phone/**", "/v1/auth/refresh",
"/v1/push").permitAll()
.requestMatchers("/test/**", "/health**", "/h2-console",
"/static/**", "/api-docs", "/actuator/**"
).permitAll()
Expand Down

0 comments on commit 61f1b69

Please sign in to comment.