From 68025ac43c8f439f58347121b3b7a86a44f1f80d Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@statuscode.ch>
Date: Sun, 20 Jan 2013 23:46:46 +0100
Subject: [PATCH] Add a route to the JS config

---
 core/routes.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/core/routes.php b/core/routes.php
index fc511d403d..7408858b10 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -32,6 +32,9 @@ $this->create('core_ajax_vcategories_favorites', '/core/ajax/vcategories/favorit
 	->actionInclude('core/ajax/vcategories/favorites.php');
 $this->create('core_ajax_vcategories_edit', '/core/ajax/vcategories/edit.php')
 	->actionInclude('core/ajax/vcategories/edit.php');
+// oC JS config
+$this->create('js_config', '/core/js/config.js')
+	->actionInclude('core/js/config.php');
 // Routing
 $this->create('core_ajax_routes', '/core/routes.json')
 	->action('OC_Router', 'JSRoutes');
-- 
GitLab