File

mod_groups_oidc/mod_groups_oidc.lua @ 6304:6c484931c547

mod_cloud_notify: Readme: labels, how hard can it be? diff --git a/mod_cloud_notify/README.md b/mod_cloud_notify/README.md --- a/mod_cloud_notify/README.md +++ b/mod_cloud_notify/README.md @@ -1,8 +1,8 @@ ----- +--- labels: - 'Stage-Beta' summary: 'XEP-0357: Cloud push notifications' ----- +--- # Introduction
author Menel <menel@snikket.de>
date Fri, 13 Jun 2025 10:49:45 +0200
parent 5504:7d9dce4e7dd0
child 6337:486115e3b64d
line wrap: on
line source

local array = require "util.array";

module:add_item("openid-claim", "groups");

local group_memberships = module:open_store("groups", "map");
local function user_groups(username)
	return pairs(group_memberships:get_all(username) or {});
end

module:hook("token/userinfo", function(event)
	local userinfo = event.userinfo;
	if event.claims:contains("groups") then
		userinfo.groups = array(user_groups(event.username));
	end
end);