From b512ecf6d0399fdc86aebbad533006ea6fe4af21 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Tue, 23 Jun 2026 16:14:21 +0000
Subject: [PATCH] adding route /api/ping
---
app.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/app.js b/app.js
index 5c21238..5f97e1f 100644
--- a/app.js
+++ b/app.js
@@ -339,7 +339,7 @@
/////// system ////////////////////////////////////////////////////////////////
- .post("/api/ping", async function (req, res) {
+ .get("/api/ping", async function (req, res) {
try {
const res2 = await libIlias.ping()
return res.send(res2)
--
Gitblit v1.8.0