mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pep_plus: Add node config form
This commit is contained in:
parent
b0190726e5
commit
a578c75039
1 changed files with 14 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue