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: 150d6504863220374e27c5800f9048011f1a740f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
//$RUNTIME_NOAPPS = true;

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

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

?>