Merge pull request #12544 from nextcloud/fix/better_update_share_handling
Handle permission in update of share better
This commit is contained in:
commit
1bf742c462
1 changed files with 4 additions and 0 deletions
|
@ -808,6 +808,10 @@ class ShareAPIController extends OCSController {
|
|||
throw new OCSNotFoundException($this->l->t('Wrong share ID, share doesn\'t exist'));
|
||||
}
|
||||
|
||||
if ($share->getShareOwner() !== $this->currentUser && $share->getSharedBy() !== $this->currentUser) {
|
||||
throw new OCSForbiddenException('You are not allowed to edit incomming shares');
|
||||
}
|
||||
|
||||
if ($permissions === null &&
|
||||
$password === null &&
|
||||
$sendPasswordByTalk === null &&
|
||||
|
|
Loading…
Reference in a new issue