From bfbcc173f88c67bc8e6b3a8079204739f72e7ebc Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Thu, 27 Jan 2022 19:22:48 +0100 Subject: allow retrieving match log for submitted bot --- 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 ea03fc3..90e0b44 100644 --- a/planetwars-server/src/lib.rs +++ b/planetwars-server/src/lib.rs @@ -54,7 +54,11 @@ pub async fn api() -> Router { get(routes::matches::list_matches).post(routes::matches::play_match), ) .route("/matches/:match_id", get(routes::matches::get_match_log)) - .route("/submit-bot", post(routes::demo::submit_bot)) + .route("/submit_bot", post(routes::demo::submit_bot)) + .route( + "/submission_match_log/:match_id", + get(routes::demo::get_submission_match_log), + ) .layer(AddExtensionLayer::new(pool)); api } -- cgit v1.2.3