mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
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:
parent
05c6704075
commit
97d83f6c8f
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ function api:may(action, context, peek)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Execute a function, once, but only after startup is complete
|
-- 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);
|
return prosody.started:next(f);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue