aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-03-11 16:32:41 +0000
committerMatthew Wild <mwild1@gmail.com>2020-03-11 16:32:41 +0000
commitcb6148d155ea02a68e40b8afb5861451750499ad (patch)
tree02615b481f420a642185570584bfbedd0cb35a15 /core
parent81f5c3e319792bec5d53c30334f3f54537aeb32b (diff)
downloadprosody-cb6148d155ea02a68e40b8afb5861451750499ad.tar.gz
prosody-cb6148d155ea02a68e40b8afb5861451750499ad.zip
storagemanager, mod_storage_sql: Rename methods to :get_all() and :delete_all()
Diffstat (limited to 'core')
-rw-r--r--core/storagemanager.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index 14de1314..856acad3 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -167,9 +167,9 @@ local map_shim_mt = {
return self.keyval_store:set(username, current);
end;
remove = {};
- find_key = function (self, key)
+ get_all = function (self, key)
if type(key) ~= "string" or key == "" then
- return nil, "find_key only supports non-empty string keys";
+ return nil, "get_all only supports non-empty string keys";
end
local ret;
for username in self.keyval_store:users() do
@@ -183,9 +183,9 @@ local map_shim_mt = {
end
return ret;
end;
- delete_key = function (self, key)
+ delete_all = function (self, key)
if type(key) ~= "string" or key == "" then
- return nil, "delete_key only supports non-empty string keys";
+ return nil, "delete_all only supports non-empty string keys";
end
local data = { [key] = self.remove };
local last_err;