diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-01 10:46:08 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-08 09:01:01 +0200 |
commit | 3bdfef910708eaba19daaf7d1d992cd4575af3b4 (patch) | |
tree | 895c842023ea379a0b7caeaa212bf82fb924d3b1 /lib/public | |
parent | f0ecfa6e6c49253230fa847ff2ce7082f6c97e68 (diff) | |
download | nextcloud-server-3bdfef910708eaba19daaf7d1d992cd4575af3b4.tar.gz nextcloud-server-3bdfef910708eaba19daaf7d1d992cd4575af3b4.zip |
Add the request type to the action
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/notification/iaction.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/notification/iaction.php b/lib/public/notification/iaction.php index 334f6cc44a7..db60f6cedbb 100644 --- a/lib/public/notification/iaction.php +++ b/lib/public/notification/iaction.php @@ -62,11 +62,12 @@ interface IAction { /** * @param string $link + * @param string $requestType * @return $this * @throws \InvalidArgumentException if the link is invalid * @since 8.2.0 */ - public function setLink($link); + public function setLink($link, $requestType); /** * @return string |