From 58c7575a92dafb2424a589bfdde29c2c13483093 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Thu, 9 Oct 2014 20:49:57 +0300 Subject: [PATCH] Declare routes required by breaking routing change in core --- appinfo/routes.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/appinfo/routes.php b/appinfo/routes.php index c66edfa5..4502537c 100644 --- a/appinfo/routes.php +++ b/appinfo/routes.php @@ -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 */