diff options
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). |