diff options
author | matthew <matthew@silver> | 2008-08-24 18:01:20 +0100 |
---|---|---|
committer | matthew <matthew@silver> | 2008-08-24 18:01:20 +0100 |
commit | 5ea14b62950a6a9cbdc96c7354afddcf637d9d41 (patch) | |
tree | 1285f7cc14c92306dab94b104648dd1747812069 /core/usermanager.lua | |
download | prosody-5ea14b62950a6a9cbdc96c7354afddcf637d9d41.tar.gz prosody-5ea14b62950a6a9cbdc96c7354afddcf637d9d41.zip |
Added all the files to please hg :/
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r-- | core/usermanager.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua new file mode 100644 index 00000000..c98a1918 --- /dev/null +++ b/core/usermanager.lua @@ -0,0 +1,11 @@ + +require "util.datamanager" +local datamanager = datamanager; + +module "usermanager" + +function validate_credentials(host, username, password) + local credentials = datamanager.load(username, host, "accounts") or {}; + if password == credentials.password then return true; end + return false; +end |