mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
E.g. for use in mod_mam and others that take an amount of time before some (usually cleanup) action is taken.
24 lines
452 B
Lua
24 lines
452 B
Lua
local set = require "prosody.util.set";
|
|
|
|
return {
|
|
available = set.new{
|
|
-- mod_bookmarks bundled
|
|
"mod_bookmarks";
|
|
-- Roles, module.may and per-session authz
|
|
"permissions";
|
|
-- prosody.* namespace
|
|
"loader";
|
|
-- "keyval+" store
|
|
"keyval+";
|
|
|
|
"s2sout-pre-connect-event";
|
|
|
|
-- prosody:guest, prosody:registered, prosody:member
|
|
"split-user-roles";
|
|
|
|
-- new moduleapi methods
|
|
"getopt-enum";
|
|
"getopt-interval";
|
|
"getopt-period";
|
|
};
|
|
};
|