prosody: fix enabling the token_verification module

Fixes: https://github.com/jitsi/jitsi-meet/issues/4349
This commit is contained in:
Saúl Ibarra Corretgé
2019-06-20 21:08:57 +02:00
parent 85c79cfb2b
commit f809afe7ed

View File

@@ -77,7 +77,7 @@ Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
{{ if .Env.XMPP_MUC_MODULES }}
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MUC_MODULES) }}";
{{ end }}
{{ if .Env.JWT_ENABLE_TOKEN_AUTH | default "0" | toBool }}
{{ if eq $AUTH_TYPE "jwt" }}
"token_verification";
{{ end }}
}