refactor: 중복된 \@Public 어노테이션 제거

This commit is contained in:
이상진 2025-09-18 20:28:11 +09:00
parent ed8b48712e
commit 6a7e1906d2

View File

@ -18,7 +18,6 @@ import roomescape.theme.docs.PublicThemeAPI
class ThemeController(
private val themeService: ThemeService,
) : PublicThemeAPI {
@Public
@PostMapping("/batch")
override fun findThemeInfosByIds(
@Valid @RequestBody request: ThemeIdListRequest
@ -28,7 +27,6 @@ class ThemeController(
return ResponseEntity.ok(CommonApiResponse(response))
}
@Public
@GetMapping("/{id}")
override fun findThemeInfoById(
@PathVariable id: Long