diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-09-29 18:08:54 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-10-02 18:00:23 +0200 |
commit | bb136b9adf021cb154ff05222d3439373312bbc5 (patch) | |
tree | a6fccf936b0a40c7d48d55a23f4897b0332c3192 /core/routes.php | |
parent | 210ea4d9d9a3488918c898beb6d6508c60686ad1 (diff) | |
download | nextcloud-server-bb136b9adf021cb154ff05222d3439373312bbc5.tar.gz nextcloud-server-bb136b9adf021cb154ff05222d3439373312bbc5.zip |
Make the settings ajax calls use the router
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/core/routes.php b/core/routes.php index 9a84eb64a3b..b0f41dd2861 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,19 +6,7 @@ * See the COPYING-README file. */ -// Core settings pages -$this->create('settings_help', '/settings/help') - ->actionInclude('settings/help.php'); -$this->create('settings_personal', '/settings/personal') - ->actionInclude('settings/personal.php'); -$this->create('settings_settings', '/settings') - ->actionInclude('settings/settings.php'); -$this->create('settings_users', '/settings/users') - ->actionInclude('settings/users.php'); -$this->create('settings_apps', '/settings/apps') - ->actionInclude('settings/apps.php'); -$this->create('settings_admin', '/settings/admin') - ->actionInclude('settings/admin.php'); +require_once('settings/routes.php'); // Not specifically routed $this->create('app_css', '/apps/{app}/{file}') |