From 3b2017d09e9ace2ac96286a3ee06449dbc3dbd43 Mon Sep 17 00:00:00 2001 From: Christopher Van Date: Thu, 14 Aug 2014 15:43:11 -0700 Subject: [PATCH] update methods for leaderboard score endpoints --- api/leaderboards/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/leaderboards/config.json b/api/leaderboards/config.json index b1c7795..f9e828b 100644 --- a/api/leaderboards/config.json +++ b/api/leaderboards/config.json @@ -10,8 +10,8 @@ "DELETE /games/:game_slug/leaderboards/:board_slug": "delete", "GET /games/:game_slug/leaderboards/:board_slug/scores": "scores_all", "POST /games/:game_slug/leaderboards/:board_slug/scores": "scores_create", - "POST /games/:game_slug/leaderboards/:board_slug/scores/:score_id": "scores_get", - "POST /games/:game_slug/leaderboards/:board_slug/scores/:score_id": "scores_update", + "GET /games/:game_slug/leaderboards/:board_slug/scores/:score_id": "scores_get", + "PATCH /games/:game_slug/leaderboards/:board_slug/scores/:score_id": "scores_update", "PUT /games/:game_slug/leaderboards/:board_slug/scores/:score_id": "scores_replace", "DELETE /games/:game_slug/leaderboards/:board_slug/scores": "scores_delete" }