nextcloud/apps/files_sharing/ajax/setpermissions.php

13 lines
336 B
PHP
Raw Normal View History

<?php
2012-05-03 14:23:29 +04:00
OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkLoggedIn();
2012-07-07 18:03:21 +04:00
OCP\JSON::callCheck();
$source = '/'.OCP\USER::getUser().'/files'.$_POST['source'];
$uid_shared_with = $_POST['uid_shared_with'];
$permissions = $_POST['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);
OCP\JSON::success();