File

core/features.lua @ 12963:276b7d470433

scansion: PEP notifications no longer carry 'publisher' by default Previous behaviour: - publisher was always included in PEP notifications - publisher was never included in get_items requests New behaviour: - publisher is included in both notifications and retrieval if itemreply == publisher - publisher is not ever included if itemreply ~= publisher
author Matthew Wild <mwild1@gmail.com>
date Wed, 22 Mar 2023 16:48:51 +0000
parent 12957:e625ad5a9889
child 12972:ead41e25ebc0
line wrap: on
line source

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