Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setpermissions.php « ajax « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73f59d73db2d49d9f79399705538c60404b8d1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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);

?>