diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-06 16:58:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-06 16:58:21 +0200 |
commit | 3adccdd08cd6225924f886019b8b6de4be889163 (patch) | |
tree | f0c9819502c08952e09629e0fdd3a3c494e7c97d /plugins/mod_pubsub/pubsub.lib.lua | |
parent | b0a52c384fe2077eac33bf4f7ef25080b4272f6b (diff) | |
parent | 4d905e149101e7bef4bfdafafa4bc56e4bb80630 (diff) | |
download | prosody-3adccdd08cd6225924f886019b8b6de4be889163.tar.gz prosody-3adccdd08cd6225924f886019b8b6de4be889163.zip |
Merge jonasw->trunk
Diffstat (limited to 'plugins/mod_pubsub/pubsub.lib.lua')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index aad78235..40a664f2 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -75,11 +75,11 @@ local node_config_form = dataform { name = "pubsub#access_model"; label = "Specify the subscriber model"; options = { - { value = "authorize" }; - { value = "open" }; - { value = "presence" }; - { value = "roster" }; - { value = "whitelist" }; + "authorize", + "open", + "presence", + "roster", + "whitelist", }; }; { |