diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 21:42:47 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 21:42:47 +0200 |
commit | 1011015b29c00480b1a7bcb5e2d98abdb363fc75 (patch) | |
tree | f3aababb022dca87a12124ae46c5d1f75eeab14c /planetwars-server/src/modules | |
parent | b84e9be9d64bad2b1a44f34c499de7dd0525f2b6 (diff) | |
download | planetwars.dev-1011015b29c00480b1a7bcb5e2d98abdb363fc75.tar.xz planetwars.dev-1011015b29c00480b1a7bcb5e2d98abdb363fc75.zip |
show match url in planetwars_client
Diffstat (limited to 'planetwars-server/src/modules')
-rw-r--r-- | planetwars-server/src/modules/bot_api.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/planetwars-server/src/modules/bot_api.rs b/planetwars-server/src/modules/bot_api.rs index cb12275..3bc002c 100644 --- a/planetwars-server/src/modules/bot_api.rs +++ b/planetwars-server/src/modules/bot_api.rs @@ -135,6 +135,11 @@ impl pb::bot_api_service_server::BotApiService for BotApiServer { Ok(Response::new(pb::CreatedMatch { match_id: created_match.base.id, player_key, + // TODO: can we avoid hardcoding this? + match_url: format!( + "{}/matches/{}", + self.runner_config.root_url, created_match.base.id + ), })) } } |