server/apps/files_sharing/ajax/unshare.php
Frank Karlitschek 70cea18cce ported getUser
2012-05-01 18:50:31 +02:00

12 lines
301 B
PHP
Executable file

<?php
//$RUNTIME_NOAPPS = true;
OC_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);
?>