summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/unshare.php
blob: 02a59c4016b990ea3ea4ee3fef3715fa589af896 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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'];
OC_Share::unshare($source, $uid_shared_with);

OCP\JSON::success();