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

unshare.php « ajax « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9088bf4266349c05093715fb85d556bb30b8e403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
require_once(OC::$APPSROOT . '/apps/files_sharing/lib_share.php');

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

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

OCP\JSON::success();

?>