summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-08-19 15:40:08 +0200
committerLukas Reschke <lukas@owncloud.com>2014-08-19 15:40:08 +0200
commitab12bd292d1ac44db427332c265fa58bcf4c3cb4 (patch)
treeba38a880f26cf6081a085af87412bbca9770eaa5 /core/routes.php
parent29ae7f55ef49e02cd9a823ead1882342bddaaef4 (diff)
downloadnextcloud-server-ab12bd292d1ac44db427332c265fa58bcf4c3cb4.tar.gz
nextcloud-server-ab12bd292d1ac44db427332c265fa58bcf4c3cb4.zip
Add update route to core
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/routes.php b/core/routes.php
index cf74521a746..ff79c450508 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -80,7 +80,8 @@ $this->create('core_ajax_preview', '/core/preview')
->actionInclude('core/ajax/preview.php');
$this->create('core_ajax_preview', '/core/preview.png')
->actionInclude('core/ajax/preview.php');
-
+$this->create('core_ajax_update', '/core/ajax/update.php')
+ ->actionInclude('core/ajax/update.php');
// Avatar routes
$this->create('core_avatar_get_tmp', '/avatar/tmp')
->get()