Skip to content

Commit

Permalink
[Test] 딥링크 리다이렉트 test
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunio committed Dec 4, 2024
1 parent 5a3340e commit 50e41fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti

.authorizeHttpRequests(authorize -> authorize
.requestMatchers("swagger-ui/**", "/v3/**").permitAll()
.requestMatchers("/member/sign-up", "/member/sign-in").permitAll()
.requestMatchers("/member/sign-up", "/member/sign-in", "/member/app-link").permitAll()
.anyRequest().authenticated())
.sessionManagement(session -> session
.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
Expand Down

0 comments on commit 50e41fb

Please sign in to comment.