mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
bind values for get_parentnodes_tree
This commit is contained in:
parent
e11c835bd3
commit
9c17163b55
@ -119,7 +119,14 @@ get_nodes(_Host) -> [].
|
|||||||
|
|
||||||
get_parentnodes(_Host, _Node, _From) -> [].
|
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
|
case get_node(Host, NodeId, From) of
|
||||||
Node when is_record(Node, pubsub_node) -> [{0, [Node]}];
|
Node when is_record(Node, pubsub_node) -> [{0, [Node]}];
|
||||||
_Error -> []
|
_Error -> []
|
||||||
|
Loading…
Reference in New Issue
Block a user