diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2009-07-20 08:53:56 +0000 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2009-07-20 08:53:56 +0000 |
commit | 360b4916b1b11fc23f154a5e64f8e1f1e3665966 (patch) | |
tree | 44e1000b79e419f6b40cb2e0f88666c1f667eaeb /src/mod_pubsub/node.template | |
parent | Revert workaround of EJAB-611 because it seems no longer required (EJAB-709) (diff) |
Implement pubsub#get-pending Ad Hoc Command (EJAB-955) (thanks to Brian Cully)
SVN Revision: 2372
Diffstat (limited to 'src/mod_pubsub/node.template')
-rw-r--r-- | src/mod_pubsub/node.template | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mod_pubsub/node.template b/src/mod_pubsub/node.template index 08f2e08ed..59de1dcb3 100644 --- a/src/mod_pubsub/node.template +++ b/src/mod_pubsub/node.template @@ -58,6 +58,7 @@ get_node_subscriptions/1, get_subscriptions/2, set_subscriptions/4, + get_pending_nodes/2, get_states/1, get_state/2, set_state/1, @@ -160,6 +161,9 @@ get_subscriptions(NodeId, Owner) -> set_subscriptions(NodeId, Owner, Subscription, SubId) -> node_hometree:set_subscriptions(NodeId, Owner, Subscription, SubId). +get_pending_nodes(Host, Owner) -> + node_hometree:get_pending_nodes(Host, Owner). + get_states(NodeId) -> node_hometree:get_states(NodeId). |