Implements get photos for an item

This commit is contained in:
2026-05-15 13:40:25 -05:00
parent 6327e0d034
commit eed5a0dd56
4 changed files with 22 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ class ItemController(private val huntService: HuntService) {
@GetMapping("/{itemId}")
fun getItem(@PathVariable huntId: HuntId, @PathVariable itemId: ItemId): ResponseEntity<ItemResponse> {
TODO("Get detailed information about the specified Item for the specified Hunt")
TODO("Maybe not needed: Get detailed information about the specified Item for the specified Hunt")
}
@PreAuthorize("hasRole('ADMIN')")