Skip to content
Snippets Groups Projects
Commit 6daa588e authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #12556 from owncloud/add-route-for-versions

Add route for download of versions
parents 7dcf0b02 c4e0c025
Branches
No related tags found
No related merge requests found
......@@ -11,6 +11,8 @@ function() {
require_once __DIR__ . '/../ajax/preview.php';
});
$this->create('files_versions_download', 'download.php')
->actionInclude('files_versions/download.php');
$this->create('files_versions_ajax_getVersions', 'ajax/getVersions.php')
->actionInclude('files_versions/ajax/getVersions.php');
$this->create('files_versions_ajax_rollbackVersion', 'ajax/rollbackVersion.php')
......
......@@ -22,7 +22,7 @@
*/
OCP\JSON::checkAppEnabled('files_versions');
//OCP\JSON::callCheck();
OCP\JSON::checkLoggedIn();
$file = $_GET['file'];
$revision=(int)$_GET['revision'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment