aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_authz_internal.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-03-22 22:01:49 +0100
committerKim Alvefur <zash@zash.se>2021-03-22 22:01:49 +0100
commitf2f1714e47fb441f70fd77319765221c5e06c800 (patch)
tree417183bf8fcb041975bf4d53e4da10fb5f160011 /plugins/mod_authz_internal.lua
parent0ca317cd0b62dff77bc48969407efc1d19277c14 (diff)
downloadprosody-f2f1714e47fb441f70fd77319765221c5e06c800.tar.gz
prosody-f2f1714e47fb441f70fd77319765221c5e06c800.zip
mod_authz_internal: Ignore unused argument for now [luachec]
Diffstat (limited to 'plugins/mod_authz_internal.lua')
-rw-r--r--plugins/mod_authz_internal.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_authz_internal.lua b/plugins/mod_authz_internal.lua
index 3f5d6237..55dd49e7 100644
--- a/plugins/mod_authz_internal.lua
+++ b/plugins/mod_authz_internal.lua
@@ -24,6 +24,6 @@ function get_jid_roles(jid)
return nil;
end
-function set_jid_roles(jid)
+function set_jid_roles(jid) -- luacheck: ignore 212
return false;
end