Class | Jabber::PubSub::NodeConfig |
In: |
lib/xmpp4r/pubsub/children/node_config.rb
|
Parent: | Configuration |
A <configure> XMPP element for pubsub nodes, see example 123 in www.xmpp.org/extensions/xep-0060.html#owner-create-and-configure
Construct a <configure> element.
node: | [String] the node to configure |
options: | [Hash] the configuration to apply |
# File lib/xmpp4r/pubsub/children/node_config.rb, line 22 22: def initialize(node = nil, options = nil) 23: super() 24: 25: self.node = node 26: self.options = options 27: end