diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-19 13:29:47 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-19 13:29:47 +0100 |
commit | 1cf3761516d65ee399a027aebf7b94756c6a2e4d (patch) | |
tree | fe4b6310322c843b8210c18bbfd48f79a2b91c3f | |
parent | b06f38170afcf5801bf38add8f141e624c613a82 (diff) | |
download | prosody-1cf3761516d65ee399a027aebf7b94756c6a2e4d.tar.gz prosody-1cf3761516d65ee399a027aebf7b94756c6a2e4d.zip |
moduleapi: Add module:open_store() as a front-end to storagemanager.open()
-rw-r--r-- | core/moduleapi.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index fa20c3cd..a8e6881e 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -337,4 +337,8 @@ function api:load_resource(path, mode) return io.open(path, mode); end +function api:open_store(name, type) + return storagemanager.open(self.host, name, type); +end + return api; |