From cb3cfb7d3b792f1237c9a9cfe41cfd3d7fe871f8 Mon Sep 17 00:00:00 2001 From: sanderr Date: Wed, 3 Aug 2022 12:40:23 +0200 Subject: [PATCH] Add HEAD method So services can use the HEAD method to check websites. This has the added benefit of not loading big pages and thus being more lightweight. --- frontend/src/forms/Service.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/forms/Service.vue b/frontend/src/forms/Service.vue index 32bb78a4..fbe847d7 100644 --- a/frontend/src/forms/Service.vue +++ b/frontend/src/forms/Service.vue @@ -94,12 +94,13 @@
- A GET request will simply request the endpoint, you can also send data with POST. + A GET/HEAD request will simply request the endpoint, you can also send data with POST.