[#44] 매장 기능 도입 #45

Merged
pricelees merged 116 commits from feat/#44 into main 2025-09-20 03:15:06 +00:00
Showing only changes of commit 6a7e1906d2 - Show all commits

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