We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9409df + ea1e1f9 commit fe81bbeCopy full SHA for fe81bbe
1 file changed
โsrc/main/java/com/daramg/server/auth/config/SecurityConfig.javaโ
@@ -47,6 +47,7 @@ SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
47
.requestMatchers("/auth/verify-email").permitAll()
48
.requestMatchers("/auth/signup").permitAll()
49
.requestMatchers("/auth/login").permitAll()
50
+ .requestMatchers(HttpMethod.PUT, "/auth/password-reset").permitAll()
51
.requestMatchers("/composers").permitAll()
52
.requestMatchers(HttpMethod.GET, "/posts/**").permitAll()
53
.requestMatchers("/users/check-nickname").permitAll()
0 commit comments