summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/unshare.php
blob: 5056c59a3d45aa336ea3c547ebfd9de0f5394327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
//$RUNTIME_NOAPPS = true;

 
OCP\JSON::checkAppEnabled('files_sharing');
require_once(OC::$APPSROOT . '/apps/files_sharing/lib_share.php');

$source = "/".OCP\USER::getUser()."/files".$_GET['source'];
$uid_shared_with = $_GET['uid_shared_with'];
OC_Share::unshare($source, $uid_shared_with);

?>