Software /
code /
prosody
Comparison
plugins/mod_storage_internal.lua @ 5133:1443d1c37c6c
Merge 0.9->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 19 Sep 2012 12:14:08 +0100 |
parent | 5122:b41c33dc7c36 |
parent | 5130:051d352ed03c |
child | 5153:688aeac0012a |
comparison
equal
deleted
inserted
replaced
5127:cbcd173ad906 | 5133:1443d1c37c6c |
---|---|
14 | 14 |
15 function driver:set(user, data) | 15 function driver:set(user, data) |
16 return datamanager.store(user, host, self.store, data); | 16 return datamanager.store(user, host, self.store, data); |
17 end | 17 end |
18 | 18 |
19 function driver:list_stores(username) | 19 function driver:stores(username) |
20 return datamanager.list_stores(username, host); | 20 return datamanager.stores(username, host); |
21 end | 21 end |
22 | 22 |
23 function driver:purge(user) | 23 function driver:purge(user) |
24 return datamanager.purge(user, host); | 24 return datamanager.purge(user, host); |
25 end | 25 end |