aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_internal.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-31 17:39:41 +0200
committerKim Alvefur <zash@zash.se>2017-03-31 17:39:41 +0200
commitfefbf230135141e84fdb5bb7ba51284715358599 (patch)
tree9933613b27ecb5b70cc51db5464d05dedb7a4207 /plugins/mod_storage_internal.lua
parentb1d929678998a3b6e2e31b234bbac244b2379454 (diff)
downloadprosody-fefbf230135141e84fdb5bb7ba51284715358599.tar.gz
prosody-fefbf230135141e84fdb5bb7ba51284715358599.zip
mod_storage_internal: Ignore unused 'self' argument [luacheck]
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r--plugins/mod_storage_internal.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua
index 557a329e..294d823c 100644
--- a/plugins/mod_storage_internal.lua
+++ b/plugins/mod_storage_internal.lua
@@ -12,11 +12,11 @@ function driver:open(store, typ)
return setmetatable({ store = store, type = typ }, mt);
end
-function driver:stores(username)
+function driver:stores(username) -- luacheck: ignore 212/self
return datamanager.stores(username, host);
end
-function driver:purge(user)
+function driver:purge(user) -- luacheck: ignore 212/self
return datamanager.purge(user, host);
end