Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gurdl0525 committed Nov 15, 2023
2 parents 64499f2 + 518e0f1 commit aea95ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DiaryController(
fun getById(
@RequestParam("date", required = true)
date: String
): DiaryDetailResponse = diaryService.getDetailById(LocalDate.parse(date))
): DiaryDetailResponse? = diaryService.getDetailById(LocalDate.parse(date))

@PutMapping
fun updateDiary(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class SecurityConfig(

.antMatchers("/**/test").permitAll()
.antMatchers("/auth/**").permitAll()
.antMatchers(HttpMethod.DELETE, "/auth").authenticated()
.antMatchers(HttpMethod.GET, "/healthcheck").permitAll()
.anyRequest().authenticated()
.and()
Expand Down

0 comments on commit aea95ae

Please sign in to comment.