mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal, datamanager: Add support for iterating over users with data in a store
This commit is contained in:
parent
7aca7b6303
commit
196022f3f5
2 changed files with 25 additions and 2 deletions
|
@ -5,8 +5,8 @@ local host = module.host;
|
|||
local driver = {};
|
||||
local driver_mt = { __index = driver };
|
||||
|
||||
function driver:open(store)
|
||||
return setmetatable({ store = store }, driver_mt);
|
||||
function driver:open(store, typ)
|
||||
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||
end
|
||||
function driver:get(user)
|
||||
return datamanager.load(user, host, self.store);
|
||||
|
@ -20,6 +20,10 @@ function driver:stores(username)
|
|||
return datamanager.stores(username, host);
|
||||
end
|
||||
|
||||
function driver:users()
|
||||
return datamanager.users(host, self.store, self.type);
|
||||
end
|
||||
|
||||
function driver:purge(user)
|
||||
return datamanager.purge(user, host);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue