We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 490b768 + 1179d86 commit dcd2febCopy full SHA for dcd2feb
1 file changed
src/main/java/com/example/FixLog/config/SecurityConfig.java
@@ -37,7 +37,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
37
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
38
.requestMatchers(HttpMethod.GET, "/", "/main", "/main/**").permitAll()
39
.requestMatchers(HttpMethod.GET, "/posts/**").permitAll()
40
-
+ .requestMatchers(HttpMethod.GET, "/tags").permitAll()
41
.requestMatchers("/api/s3/**").permitAll()
42
// h2-console (로컬 테스트용)
43
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()
0 commit comments