Skip to content

Commit

Permalink
Merge pull request #45 from How-homework-out/master
Browse files Browse the repository at this point in the history
[feat] certbot 인증을 위한 interceptor 일시 중지
  • Loading branch information
ryulkim authored Nov 20, 2023
2 parents 42ca58b + bfd8506 commit b98906b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit b98906b

Please sign in to comment.