summaryrefslogtreecommitdiffstats
path: root/settings/routes.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-02-03 12:48:17 +0100
committerVincent Petry <pvince81@owncloud.com>2014-09-23 16:58:19 +0200
commit2013404e0a5ccb4d0fce73ee3ff6af2ece0a1c70 (patch)
treea30b6888a48bd5c6f2fef5f5eebba96b35bf0c89 /settings/routes.php
parentfbcd80ac083ca595d944564cab604405445b5571 (diff)
downloadnextcloud-server-2013404e0a5ccb4d0fce73ee3ff6af2ece0a1c70.tar.gz
nextcloud-server-2013404e0a5ccb4d0fce73ee3ff6af2ece0a1c70.zip
Moved WebDAV and internet checks to client side JS
- Added setup checks in JavaScript - Moved isWebDAVWorking to JS using SetupChecks - Moved internet connection checks to an ajax call that goes through the server Backport of e65ceb08fc4a56d0fb9e4be5d51ba04168cbb59a from master
Diffstat (limited to 'settings/routes.php')
-rw-r--r--settings/routes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php
index d98497ee617..19bbe0f133f 100644
--- a/settings/routes.php
+++ b/settings/routes.php
@@ -94,3 +94,5 @@ $this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php')
->actionInclude('settings/ajax/setsecurity.php');
$this->create('settings_ajax_excludegroups', '/settings/ajax/excludegroups.php')
->actionInclude('settings/ajax/excludegroups.php');
+$this->create('settings_ajax_checksetup', '/settings/ajax/checksetup')
+ ->actionInclude('settings/ajax/checksetup.php');