We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040c404 commit a0f48b6Copy full SHA for a0f48b6
src/main/java/com/example/FixLog/config/SecurityConfig.java
@@ -32,6 +32,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
32
.authorizeHttpRequests(auth -> auth
33
.requestMatchers(HttpMethod.GET, "/auth/**").permitAll()
34
.requestMatchers(HttpMethod.POST, "/auth/**").permitAll()
35
+ .requestMatchers(HttpMethod.POST, "/members/signup").permitAll()
36
.requestMatchers(HttpMethod.GET, "/members/check-email").permitAll()
37
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
38
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
0 commit comments