nextcloud/apps/files_sharing/ajax/unshare.php

11 lines
258 B
PHP
Raw Normal View History

<?php
$RUNTIME_NOAPPS = true;
require_once('../../../lib/base.php');
require_once('../lib_share.php');
2011-08-11 22:20:50 +04:00
$source = "/".OC_User::getUser()."/files".$_GET['source'];
$uid_shared_with = $_GET['uid_shared_with'];
OC_Share::unshare($source, $uid_shared_with);
?>