File

core/features.lua @ 13024:7558fd152459

mod_tokenauth: Add API method to revoke a grant by id We probably want to refactor revoke_token() to use this one in the future.
author Matthew Wild <mwild1@gmail.com>
date Wed, 05 Apr 2023 15:33:56 +0100
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+";
	};
};