summaryrefslogtreecommitdiffstats
path: root/apps/files_versions/ajax/rollbackVersion.php
blob: 900d8cd6e285d1995bd155dd8497b89c756e97ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

OCP\JSON::checkAppEnabled('files_versions');
OCP\JSON::callCheck();

$file = $_GET['file'];
$revision=(int)$_GET['revision'];

if(OCA\Files_Versions\Storage::rollback( $file, $revision )) {
	OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file )));
}else{
	$l = OC_L10N::get('files_versions');
	OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) ))));
}