From 7dce3e38b4278646edc699487c740f87805f55d9 Mon Sep 17 00:00:00 2001 From: aarbit Date: Thu, 8 Jan 2026 22:13:32 -0600 Subject: [PATCH] Adds endpoint todos in README --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ecb149b..ec7e497 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ # Scavenger Hunt API -REST API to support a community scavenger hunt app. \ No newline at end of file +REST API to support a community scavenger hunt app. + +## TODO: +### User Endpoints +* list teams for hunt GET /hunt/{id}/team +* create new hunt team POST /hunt/{id}/team +* join hunt team POST /hunt/{id}/team/{id} +* list items for hunt GET /hunt/{id}/item +* get hunt item info GET /hunt/{id}/item/{id} +* get hunt team item info GET /hunt/{id}/team/{id}/item/{id} +* get photos for hunt item GET /hunt/{id}/team/{id}/item/{id}/photo +* upload photo for hunt item POST /hunt/{id}/team/{id}/item/{id}/photo +* delete photo for hunt item DELETE /hunt/{id}/team/{id}/item/{id}/photo +* list hunt teams with scores for hunt GET /lead/hunt/{id}/team +* list hunters with scores for hunt GET /lead/hunt/{id}/hunter +### Admin Endpoints +* approve photo for hunt item POST /admin/hunt/{id}/team/{id} \ No newline at end of file