Merge pull request #12556 from owncloud/add-route-for-versions
Add route for download of versions
This commit is contained in:
commit
6daa588e1c
|
@ -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'];
|
||||
|
|
Loading…
Reference in New Issue