mod_pep_plus: Add node config form

This commit is contained in:
Kim Alvefur 2014-09-28 02:00:09 +02:00
parent b0190726e5
commit a578c75039

View file

@ -133,6 +133,7 @@ function get_pep_service(name)
retract = true;
delete = true;
get_nodes = true;
configure = true;
subscribe = true;
unsubscribe = true;
@ -153,6 +154,19 @@ function get_pep_service(name)
};
};
node_config_form = require"util.dataforms".new {
{
type = "hidden";
name = "FORM_TYPE";
value = "http://jabber.org/protocol/pubsub#node_config";
};
{
type = "text-single";
name = "pubsub#max_items";
label = "Max # of items to persist";
};
};
autocreate_on_publish = true;
autocreate_on_subscribe = true;