File

core/features.lua @ 13162:6140aa67c618

util.jsonschema: Silence Teal warnings about counting items in tables Teal thinks that these are key-value maps which are always of length zero, but that is not the case.
author Kim Alvefur <zash@zash.se>
date Sat, 17 Jun 2023 17:12:54 +0200
parent 13111:8576f94ac90a
child 13170:082c7d856e61
line wrap: on
line source

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";
	};
};