Browse Source

use OCSv2 to make sure that the error also arrives at the web front-end

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
pull/5823/head
Bjoern Schiessle 8 years ago
parent
commit
8b3dfcc429
No known key found for this signature in database GPG Key ID: 2378A753E2BF04F6
  1. 4
      apps/federatedfilesharing/lib/Controller/RequestHandlerController.php

4
apps/federatedfilesharing/lib/Controller/RequestHandlerController.php

@ -194,12 +194,12 @@ class RequestHandlerController extends OCSController {
$declineAction = $notification->createAction();
$declineAction->setLabel('decline')
->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v1.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'DELETE');
->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v2.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'DELETE');
$notification->addAction($declineAction);
$acceptAction = $notification->createAction();
$acceptAction->setLabel('accept')
->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v1.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'POST');
->setLink($urlGenerator->getAbsoluteURL($urlGenerator->linkTo('', 'ocs/v2.php/apps/files_sharing/api/v1/remote_shares/pending/' . $shareId)), 'POST');
$notification->addAction($acceptAction);
$notificationManager->notify($notification);

Loading…
Cancel
Save