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 | 6915940fc56154fa39f13621ef668d2710cc59a0 (patch) | |
tree | 750d18c2cbe5cd3d623dfd86c3578a4e0845bda7 /plugins/mod_pep_plus.lua | |
parent | 026a6de4a73ebc54f6e6bd8363c7418cd26196d7 (diff) | |
download | prosody-6915940fc56154fa39f13621ef668d2710cc59a0.tar.gz prosody-6915940fc56154fa39f13621ef668d2710cc59a0.zip |
mod_pep_plus: Remove config form, it moved into pubsub.lib
Diffstat (limited to 'plugins/mod_pep_plus.lua')
-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; |