From c4720644512ae88d57a6970cb5ac386911d6ab94 Mon Sep 17 00:00:00 2001 From: Klagarge Date: Sat, 9 May 2026 16:41:52 +0200 Subject: [PATCH] fix(db): url for api start with https Signed-off-by: Klagarge --- db/get-db.http | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/db/get-db.http b/db/get-db.http index cb496b3..3478a90 100644 --- a/db/get-db.http +++ b/db/get-db.http @@ -4,14 +4,14 @@ @password = ### GET last value of temp, co2, humidity, windows states -GET http://{{host}}/api/v1/rooms/{{room-id}}/current +GET {{host}}/api/v1/rooms/{{room-id}}/current Authorization: Basic {{username}} {{password}} ### GET history of a room @window = 1 day -GET http://{{host}}/api/v1/rooms/{{room-id}}/history?window={{window}} +GET {{host}}/api/v1/rooms/{{room-id}}/history?window={{window}} Authorization: Basic {{username}} {{password}} ### GET all rooms -GET http://{{host}}/api/v1/rooms +GET {{host}}/api/v1/rooms Authorization: Basic {{username}} {{password}}