|
@@ -51,7 +51,19 @@ local ASAPIssuer
|
51
|
51
|
= module:get_option_string("asap_issuer", 'jitsi');
|
52
|
52
|
|
53
|
53
|
local ASAPAudience
|
54
|
|
- = module:get_option_string("asap_audience", 'jitsi');
|
|
54
|
+ = module:get_option_string("asap_audience", 'jibri-queue');
|
|
55
|
+
|
|
56
|
+local ASAPAcceptedIssuers
|
|
57
|
+ = module:get_option_array('asap_accepted_issuers',{'jibri-queue'});
|
|
58
|
+
|
|
59
|
+module:log("info", "ASAP Accepted Issuers %s", ASAPAcceptedIssuers);
|
|
60
|
+token_util:set_asap_accepted_issuers(ASAPAcceptedIssuers);
|
|
61
|
+
|
|
62
|
+local ASAPAcceptedAudiences
|
|
63
|
+ = module:get_option_array('asap_accepted_audiences',{'*'});
|
|
64
|
+
|
|
65
|
+ module:log("info", "ASAP Accepted Audiences %s", ASAPAcceptedAudiences);
|
|
66
|
+ token_util:set_asap_accepted_audiences(ASAPAcceptedAudiences);
|
55
|
67
|
|
56
|
68
|
local ASAPTTL
|
57
|
69
|
= module:get_option_number("asap_ttl", 3600);
|