aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-19 13:29:47 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-19 13:29:47 +0100
commit71120cf0227edd516932f9037da61e70f47a3d07 (patch)
treefe4b6310322c843b8210c18bbfd48f79a2b91c3f /core/moduleapi.lua
parentb2c3351d657af5f614752fc1e913ae427709352c (diff)
downloadprosody-71120cf0227edd516932f9037da61e70f47a3d07.tar.gz
prosody-71120cf0227edd516932f9037da61e70f47a3d07.zip
moduleapi: Add module:open_store() as a front-end to storagemanager.open()
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua4
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;