Mercurial > prosody-hg
view plugins/mod_authz_config.lua @ 10643:417eadd0f567
mod_saslauth: Pass through any auth scope from the SASL handler to sessionmanager.make_authenticated()
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 05 Feb 2020 17:56:44 +0000 |
| parents | 675d9fbcbaed |
| children |
line wrap: on
line source
local normalize = require "util.jid".prep; local admin_jids = module:get_option_inherited_set("admins", {}) / normalize; local host = module.host; local admin_role = { ["prosody:admin"] = true }; function get_user_roles(user) return get_jid_roles(user.."@"..host); end function get_jid_roles(jid) if admin_jids:contains(jid) then return admin_role; end return nil; end
