diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-02-03 12:48:17 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-09-23 16:58:19 +0200 |
commit | 2013404e0a5ccb4d0fce73ee3ff6af2ece0a1c70 (patch) | |
tree | a30b6888a48bd5c6f2fef5f5eebba96b35bf0c89 /settings/routes.php | |
parent | fbcd80ac083ca595d944564cab604405445b5571 (diff) | |
download | nextcloud-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.php | 2 |
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'); |