mod_lastactivity: Initial commit.
[prosody.git] / core / usermanager.lua
index 955218cc61af2915e343c9d0a6c98f63df5ff7b0..6c36fa29d13b8f7bfc4bf9baa6ed4df27cb673a7 100644 (file)
@@ -63,9 +63,7 @@ function create_user(username, password, host)
 end
 
 function get_supported_methods(host)
-  local methods = {["PLAIN"] = true}; -- TODO this should be taken from the config
-       methods["DIGEST-MD5"] = true;
-       return methods;
+       return {["PLAIN"] = true, ["DIGEST-MD5"] = true}; -- TODO this should be taken from the config
 end
 
 function is_admin(jid)