aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_internal.lua
diff options
context:
space:
mode:
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