nextcloud/apps/files_sharing/ajax/unshare.php

11 lines
226 B
PHP
Raw Normal View History

<?php
$RUNTIME_NOAPPS = true;
require_once('../../../lib/base.php');
require_once('../lib_share.php');
$source = $_GET['source'];
$uid_shared_with = $_GET['uid_shared_with'];
OC_SHARE::unshare($source, $uid_shared_with);
?>