File

core/features.lua @ 13183:33b114fbb5de

util.datamanager: Add way to efficiently remove first items in a list Copying data without parsing it should be more performant than parsing it serializing back.
author Kim Alvefur <zash@zash.se>
date Wed, 12 Jul 2023 11:42:41 +0200
parent 13170:082c7d856e61
child 13201:65fb0d7a2312
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";

		-- prosody:guest, prosody:registered, prosody:member
		"split-user-roles";
	};
};