From 0fd79c1736925b34d10728ae0ad0d6f9434602bf Mon Sep 17 00:00:00 2001 From: Andreas Hubel Date: Sat, 31 Oct 2020 20:14:51 +0100 Subject: add config.json api route --- index.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'index.php') diff --git a/index.php b/index.php index b109937..1c0df61 100644 --- a/index.php +++ b/index.php @@ -112,6 +112,12 @@ try { exit; } + else if($route == 'config.json') + { + require('view/config-json.php'); + exit; + } + else if($route == 'about') { // global about-page @@ -182,6 +188,12 @@ ob_start(); try { $conference = Conferences::getConference($mandator); + if($route == 'config.json') + { + require('view/config-json.php'); + exit(); + } + // update template information $tpl->set(array( 'baseurl' => forceslash(baseurl()), -- cgit v1.2.3