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

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