mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
14 lines
250 B
Lua
14 lines
250 B
Lua
local set = require "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+";
|
|
};
|
|
};
|