bind values for get_parentnodes_tree

This commit is contained in:
Christophe Romain 2013-12-03 10:51:01 +01:00
parent e11c835bd3
commit 9c17163b55
1 changed files with 8 additions and 1 deletions

View File

@ -119,7 +119,14 @@ get_nodes(_Host) -> [].
get_parentnodes(_Host, _Node, _From) -> [].
get_parentnodes_tree(_Host, _Node, _From) ->
-spec(get_parentnodes_tree/3 ::
(
Host :: mod_pubsub:host(),
NodeId :: mod_pubsub:nodeId(),
From :: jid())
-> [{0, [mod_pubsub:pubsubNode(),...]}]
).
get_parentnodes_tree(Host, NodeId, From) ->
case get_node(Host, NodeId, From) of
Node when is_record(Node, pubsub_node) -> [{0, [Node]}];
_Error -> []