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

require_once('../../../lib/base.php');
OC_JSON::checkAppEnabled('files_sharing');
require_once('../lib_share.php');

$source = "/".OC_User::getUser()."/files".$_GET['source'];
$uid_shared_with = $_GET['uid_shared_with'];
$permissions = $_GET['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);

?>