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 | 81216b737e5ca2e73061b10935b45f7d9dd7b09f (patch) | |
tree | fe4b6310322c843b8210c18bbfd48f79a2b91c3f /core | |
parent | 7d92759bf8162dab463e4624a26642c1015a44d8 (diff) | |
download | prosody-81216b737e5ca2e73061b10935b45f7d9dd7b09f.tar.gz prosody-81216b737e5ca2e73061b10935b45f7d9dd7b09f.zip |
moduleapi: Add module:open_store() as a front-end to storagemanager.open()
Diffstat (limited to 'core')
-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; |