From e513b964977d37e2fc0e46cc56aa28ce3a6f1022 Mon Sep 17 00:00:00 2001 From: Jonas Leder <git@jonasled.de> Date: Sun, 11 Jul 2021 00:52:00 +0200 Subject: [PATCH] remove config api endpoint --- public/API/config.php | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 public/API/config.php diff --git a/public/API/config.php b/public/API/config.php deleted file mode 100644 index 336fdbd..0000000 --- a/public/API/config.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php -require "./lib/config.php"; - -$configValue = $_GET['name']; - -switch ($configValue){ - case "sitekey": - echo($sitekey); - break; - default: - echo("notFound"); -} -- GitLab