mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_storage_internal: Ignore unused 'self' argument [luacheck]
This commit is contained in:
parent
b1d9296789
commit
fefbf23013
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue