moduleapi: Add luacheck annotation to suppress warning about unused self

This is a convenience function, and there is currently no module-specific code
required to implement it. Not using 'self' is to be expected.
This commit is contained in:
Matthew Wild 2023-04-01 12:30:29 +01:00
parent 05c6704075
commit 97d83f6c8f

View file

@ -694,7 +694,7 @@ function api:may(action, context, peek)
end
-- Execute a function, once, but only after startup is complete
function api:once(f)
function api:once(f) --luacheck: ignore 212/self
return prosody.started:next(f);
end