File

core/features.lua @ 13068:7a75cbc4d87c

util.human.io: Fix column width miscalculation Fixes that the more fixed width columns there are, the narrower the resulting table becomes. A right-aligned variable-width column at the last position should always be flush to the right side of the terminal.
author Kim Alvefur <zash@zash.se>
date Sun, 09 Apr 2023 22:31:12 +0200
parent 12972:ead41e25ebc0
child 13111: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+";
	};
};