Skip to content

Commit dcd2feb

Browse files
authored
[FIX] 태그 모음 로그인 없어도 볼 수 있도록
2 parents 490b768 + 1179d86 commit dcd2feb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/example/FixLog/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
3737
.requestMatchers(HttpMethod.GET, "/members/check-nickname").permitAll()
3838
.requestMatchers(HttpMethod.GET, "/", "/main", "/main/**").permitAll()
3939
.requestMatchers(HttpMethod.GET, "/posts/**").permitAll()
40-
40+
.requestMatchers(HttpMethod.GET, "/tags").permitAll()
4141
.requestMatchers("/api/s3/**").permitAll()
4242
// h2-console (로컬 테스트용)
4343
.requestMatchers(HttpMethod.GET, "/h2-console/**").permitAll()

0 commit comments

Comments
 (0)