Skip to content

Commit 84a9be4

Browse files
authored
Merge pull request #258 from 2026-snapy/main
deploy
2 parents 67dc12f + c2bd60b commit 84a9be4

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/gbsw/snapy/global/security/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public class SecurityConfig {
5050
"/v3/api-docs/**",
5151
"/swagger-ui.html",
5252
"/api/health",
53+
"/api/users/handle/check",
5354
"/.well-known/apple-app-site-association"
5455
};
5556

src/main/java/com/gbsw/snapy/global/security/filter/PhoneRegistrationFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ public class PhoneRegistrationFilter extends OncePerRequestFilter {
2222

2323
private static final Set<String> PHONE_EXEMPT_PATHS = Set.of(
2424
"/api/users/me/phone",
25-
"/api/users/me/phone/verification-code"
25+
"/api/users/me/phone/verification-code",
26+
"/api/users/handle/check"
2627
);
2728

2829
private final ObjectMapper objectMapper;

0 commit comments

Comments
 (0)