summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/setpermissions.php
blob: 0a2cf78f7651a1b7f84be533b1e173152aaeedbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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'];
$permissions = $_POST['permissions'];
OC_Share::setPermissions($source, $uid_shared_with, $permissions);

OCP\JSON::success();