server/apps/files_sharing/ajax/unshare.php

12 lines
277 B
PHP
Raw Normal View History

<?php
2012-05-03 10:23:29 +00:00
OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkLoggedIn();
2012-07-07 14:03:21 +00:00
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();