From c7f4da07c1bb3b8a52a596e7c2573c7bf3ce7b79 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Sat, 12 Feb 2022 23:52:45 +0100 Subject: separate match data api from match log api --- planetwars-server/src/lib.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'planetwars-server/src/lib.rs') diff --git a/planetwars-server/src/lib.rs b/planetwars-server/src/lib.rs index ccd5a02..94f2965 100644 --- a/planetwars-server/src/lib.rs +++ b/planetwars-server/src/lib.rs @@ -53,7 +53,11 @@ pub async fn api() -> Router { "/matches", get(routes::matches::list_matches).post(routes::matches::play_match), ) - .route("/matches/:match_id", get(routes::matches::get_match_log)) + .route("/matches/:match_id", get(routes::matches::get_match_data)) + .route( + "/matches/:match_id/log", + get(routes::matches::get_match_log), + ) .route("/submit_bot", post(routes::demo::submit_bot)) .layer(AddExtensionLayer::new(pool)); api -- cgit v1.2.3