aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-09-19 10:26:06 +0200
committerMario Vavti <mario@mariovavti.com>2017-09-19 10:26:06 +0200
commit105e7626fc2686c3d838e72350244408c439a9e8 (patch)
tree69a93520d981f86f07e9da318ca2fbbc5d9f028a /Zotlabs
parentc3b3f41a21a5b56315768dbddc366934d6374c96 (diff)
parentc6bcea0f82a03657611621c338a6c01059ae8ec6 (diff)
downloadvolse-hubzilla-105e7626fc2686c3d838e72350244408c439a9e8.tar.gz
volse-hubzilla-105e7626fc2686c3d838e72350244408c439a9e8.tar.bz2
volse-hubzilla-105e7626fc2686c3d838e72350244408c439a9e8.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Notifier.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php
index 0e8c99572..1b8a7d412 100644
--- a/Zotlabs/Daemon/Notifier.php
+++ b/Zotlabs/Daemon/Notifier.php
@@ -59,6 +59,8 @@ require_once('include/bbcode.php');
*
* ZOT
* permission_create abook_id
+ * permission_accept abook_id
+ * permission_reject abook_id
* permission_update abook_id
* refresh_all channel_id
* purge_all channel_id
@@ -171,8 +173,12 @@ class Notifier {
if($channel) {
$perm_update = array('sender' => $channel, 'recipient' => $r[0], 'success' => false, 'deliveries' => '');
- if($cmd == 'permission_create')
+ if($cmd === 'permission_create')
call_hooks('permissions_create',$perm_update);
+ elseif($cmd === 'permission_accept')
+ call_hooks('permissions_accept',$perm_update);
+ elseif($cmd === 'permission_reject')
+ call_hooks('permissions_reject',$perm_update);
else
call_hooks('permissions_update',$perm_update);