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( class ThemeController(
private val themeService: ThemeService, private val themeService: ThemeService,
) : PublicThemeAPI { ) : PublicThemeAPI {
@Public
@PostMapping("/batch") @PostMapping("/batch")
override fun findThemeInfosByIds( override fun findThemeInfosByIds(
@Valid @RequestBody request: ThemeIdListRequest @Valid @RequestBody request: ThemeIdListRequest
@ -28,7 +27,6 @@ class ThemeController(
return ResponseEntity.ok(CommonApiResponse(response)) return ResponseEntity.ok(CommonApiResponse(response))
} }
@Public
@GetMapping("/{id}") @GetMapping("/{id}")
override fun findThemeInfoById( override fun findThemeInfoById(
@PathVariable id: Long @PathVariable id: Long