diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-03-01 20:23:31 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-03-01 20:23:31 +0100 |
commit | 0f7c3c3102aff07a85fd4dfc45a1e3f8489851e7 (patch) | |
tree | 9556627413ccaecaa9fbb7a4b270a178272577ce | |
parent | 5265e19507aba9948bafc984e4ccd796539c4c2f (diff) | |
download | planetwars.dev-0f7c3c3102aff07a85fd4dfc45a1e3f8489851e7.tar.xz planetwars.dev-0f7c3c3102aff07a85fd4dfc45a1e3f8489851e7.zip |
don't allow overwriting bots for now
-rw-r--r-- | planetwars-server/src/routes/bots.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/planetwars-server/src/routes/bots.rs b/planetwars-server/src/routes/bots.rs index 66479bb..6a5612a 100644 --- a/planetwars-server/src/routes/bots.rs +++ b/planetwars-server/src/routes/bots.rs @@ -23,13 +23,13 @@ pub struct SaveBotParams { pub async fn save_bot( Json(params): Json<SaveBotParams>, conn: DatabaseConnection, -) -> Result<(), StatusCode> { +) -> Result<Json<Bot>, StatusCode> { // TODO: authorization let res = bots::find_bot_by_name(¶ms.bot_name, &conn) .optional() .expect("could not run query"); let bot = match res { - Some(bot) => bot, + Some(_bot) => return Err(StatusCode::FORBIDDEN), None => { let new_bot = bots::NewBot { owner_id: None, @@ -41,7 +41,7 @@ pub async fn save_bot( }; let _code_bundle = save_code_bundle(¶ms.code, Some(bot.id), &conn).expect("failed to save code bundle"); - Ok(()) + Ok(Json(bot)) } #[derive(Serialize, Deserialize, Debug)] |