Merge pull request #374 from owncloud/add-routes

Declare routes required by breaking routing change in core
pull/1/head
VicDeo 10 years ago
commit e6b20861b7

@ -9,6 +9,26 @@
* later.
*/
/** @var $this \OC\Route\Router */
$this->create('documents_ajax_admin', 'ajax/admin.php')
->actionInclude('documents/ajax/admin.php');
$this->create('documents_ajax_download', 'ajax/download.php')
->actionInclude('documents/ajax/admin.php');
$this->create('documents_ajax_mimes', 'ajax/mimes.php')
->actionInclude('documents/ajax/mimes.php');
$this->create('documents_ajax_otpoll', 'ajax/otpoll.php')
->actionInclude('documents/ajax/otpoll.php');
$this->create('documents_ajax_personal', 'ajax/personal.php')
->actionInclude('documents/ajax/personal.php');
$this->create('documents_ajax_settings', 'ajax/settings.php')
->actionInclude('documents/ajax/settings.php');
/**
* Document routes
*/

Loading…
Cancel
Save