Create endpoint if it does not exist
This commit is contained in:
parent
7b778cbe9f
commit
bacfc211e0
|
@ -3,5 +3,5 @@ SERVICE_NAME=room7200
|
||||||
SERVICE_TYPE=_http._tcp.local.
|
SERVICE_TYPE=_http._tcp.local.
|
||||||
SERVICE_IP=192.168.137.1
|
SERVICE_IP=192.168.137.1
|
||||||
SERVICE_PORT=5000
|
SERVICE_PORT=5000
|
||||||
DEFAULT_ENDPOINTS=true
|
DEFAULT_ENDPOINTS=false
|
||||||
LOG_LEVEL=WARN
|
LOG_LEVEL=WARN
|
|
@ -47,8 +47,9 @@ def update_endpoint(endpoint_id):
|
||||||
new_url = data.get("url")
|
new_url = data.get("url")
|
||||||
|
|
||||||
endpoint_exists = check_endpoint_exists(data, new_url)
|
endpoint_exists = check_endpoint_exists(data, new_url)
|
||||||
if endpoint_exists:
|
if not endpoint_exists:
|
||||||
return 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)
|
updated = update_endpoint_in_db(endpoint_id, new_url)
|
||||||
if updated:
|
if updated:
|
||||||
|
|
Loading…
Reference in New Issue