Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] certbot 인증을 위한 interceptor 일시 중지 #45

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/inha/how/Config/WebMvcConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void addCorsMappings(CorsRegistry registry){
.allowedOrigins("*")
.allowedMethods("OPTIONS", "GET", "POST", "PUT", "DELETE");
}

/*
@Override
public void addInterceptors(InterceptorRegistry registry){
registry.addInterceptor(new LoginInterceptor())
Expand All @@ -36,4 +36,6 @@ public void addInterceptors(InterceptorRegistry registry){
.excludePathPatterns("/.well-known/**")
;
}
*/

}
2 changes: 1 addition & 1 deletion src/main/java/inha/how/Service/RoutineService.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ public RoutineDetailRes findRoutineOne(Long id){

routineDetails.forEach((detail)->{


//이미지


//운동 부위
List<CateInfoMapping> excersiseList=findExCate(detail);

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/inha/how/Service/StompService.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.thymeleaf.expression.Sets;

import java.util.*;

import static org.hibernate.validator.internal.util.CollectionHelper.newHashSet;

@Slf4j
@RequiredArgsConstructor
Expand Down