view core/features.lua @ 13088:0fbb2b3fd4c0

util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength'
author Kim Alvefur <zash@zash.se>
date Sun, 23 Apr 2023 10:42:07 +0200
parents ead41e25ebc0
children 8576f94ac90a
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+";
	};
};