server/apps/files_sharing/ajax/setpermissions.php
Frank Karlitschek 43caa3b3b9 ported oc_json
2012-05-03 12:23:29 +02:00

13 lines
360 B
PHP
Executable file

<?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'];
$permissions = $_GET['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);
?>