mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
472 B
25 lines
472 B
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";
|
|
"getopt-integer";
|
|
};
|
|
};
|
|
|