mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_external_services: Allow specifying a credential generation callback
This is especially targeted at services added via the items API. More involved credential generation should use the event hook.
This commit is contained in:
parent
0b65dea7c0
commit
5bc6130e57
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ local function prepare(item)
|
||||||
srv.expires = os.time() + item.ttl;
|
srv.expires = os.time() + item.ttl;
|
||||||
end
|
end
|
||||||
if (item.secret == true and default_secret) or type(item.secret) == "string" then
|
if (item.secret == true and default_secret) or type(item.secret) == "string" then
|
||||||
local secret_cb = algorithms[item.algorithm] or algorithms[srv.type];
|
local secret_cb = item.credentials_cb or algorithms[item.algorithm] or algorithms[srv.type];
|
||||||
local secret = item.secret;
|
local secret = item.secret;
|
||||||
if secret == true then
|
if secret == true then
|
||||||
secret = default_secret;
|
secret = default_secret;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue