Skip to content

Commit

Permalink
Merge pull request #46 from How-homework-out/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
ryulkim authored Nov 21, 2023
2 parents b98906b + 9ef221d commit 76bd5d1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions 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 @@ -33,9 +33,6 @@ public void addInterceptors(InterceptorRegistry registry){
.excludePathPatterns("/hello")
.excludePathPatterns("/api/lives")
.excludePathPatterns("/api/lives/*")
.excludePathPatterns("/.well-known/**")
;
}
*/

}

0 comments on commit 76bd5d1

Please sign in to comment.