diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-28 03:07:46 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-28 03:07:46 +0200 |
commit | 16c34e7fd48ca743c9733f357abd18b1c62a0703 (patch) | |
tree | 750d18c2cbe5cd3d623dfd86c3578a4e0845bda7 /plugins | |
parent | c36bde729167d6aed130866f72b89ad3d00a558a (diff) | |
download | prosody-16c34e7fd48ca743c9733f357abd18b1c62a0703.tar.gz prosody-16c34e7fd48ca743c9733f357abd18b1c62a0703.zip |
mod_pep_plus: Remove config form, it moved into pubsub.lib
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_pep_plus.lua | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua index a281f49e..f45d5ef3 100644 --- a/plugins/mod_pep_plus.lua +++ b/plugins/mod_pep_plus.lua @@ -158,19 +158,6 @@ function get_pep_service(name) ["pubsub#max_items"] = "1"; }; - 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; |