mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-28 18:30:24 +02:00
Solved concate bug
This commit is contained in:
parent
250f26e03c
commit
f27076a5cc
@ -837,10 +837,10 @@
|
|||||||
{%- for application, domain in domains.items() %}
|
{%- for application, domain in domains.items() %}
|
||||||
{%- if applications[application] is defined and (applications | get_oauth2_enabled(application) or applications | get_oidc_enabled(application)) %}
|
{%- if applications[application] is defined and (applications | get_oauth2_enabled(application) or applications | get_oidc_enabled(application)) %}
|
||||||
{%- if domain is string %}
|
{%- if domain is string %}
|
||||||
{%- set _ = redirect_uris.append("{{ web_protocol }}://{}/*".format(domain)) %}
|
{%- set _ = redirect_uris.append(web_protocol ~ '://' ~ domain ~ '/*') %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{%- for d in domain %}
|
{%- for d in domain %}
|
||||||
{%- set _ = redirect_uris.append("{{ web_protocol }}://{}/*".format(d)) %}
|
{%- set _ = redirect_uris.append(web_protocol ~ '://' ~ d ~ '/*') %}
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user