From bacfc211e01306001c818d61aae4ec72416d8b9a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 9 Dec 2024 15:23:43 +0100 Subject: [PATCH] Create endpoint if it does not exist --- src/.env.dev | 2 +- src/api.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/.env.dev b/src/.env.dev index 48d6ae0..c1c6739 100644 --- a/src/.env.dev +++ b/src/.env.dev @@ -3,5 +3,5 @@ SERVICE_NAME=room7200 SERVICE_TYPE=_http._tcp.local. SERVICE_IP=192.168.137.1 SERVICE_PORT=5000 -DEFAULT_ENDPOINTS=true +DEFAULT_ENDPOINTS=false LOG_LEVEL=WARN \ No newline at end of file diff --git a/src/api.py b/src/api.py index 68ed601..2bafaaf 100644 --- a/src/api.py +++ b/src/api.py @@ -47,8 +47,9 @@ def update_endpoint(endpoint_id): new_url = data.get("url") endpoint_exists = check_endpoint_exists(data, new_url) - if endpoint_exists: - return endpoint_exists + if not endpoint_exists: + endpoint_id = add_endpoint_to_db(new_url) + return jsonify({"id": endpoint_id, "url": new_url}), 201 updated = update_endpoint_in_db(endpoint_id, new_url) if updated: