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: 31b7a3878ef2fa7830c4bbcf5568bdcd7a9ba024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

$source = '/'.OCP\USER::getUser().'/files'.$_POST['source'];
$uid_shared_with = $_POST['uid_shared_with'];
$permissions = $_POST['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);

OCP\JSON::success();

?>