Skip to content

Commit

Permalink
Feat: 공지사항 CRUD구현.(번역 관련 작업 진행 예정)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwchoi11 committed Oct 12, 2023
1 parent 1fa15e4 commit a11145c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public static LanguageType findType(String value) {

public static LanguageType findTypeByRequest(HttpServletRequest request) {
if(request == null)
throw IllegalArgumentException.EXCEPTION;
return KO;
// throw IllegalArgumentException.EXCEPTION;
return findType(request.getHeader(RequestHeaderConstants.KEY_LANGUAGE));
}
}

0 comments on commit a11145c

Please sign in to comment.