mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Solved multiple bugs like networking, variables etc. which occured on veen.world server
This commit is contained in:
@@ -834,19 +834,17 @@
|
||||
"clientAuthenticatorType": "client-secret",
|
||||
"secret": "{{oidc.client.secret}}",
|
||||
"redirectUris": [
|
||||
{%- set redirect_uris = [] -%}
|
||||
{%- for application, domain in domains.items() -%}
|
||||
{%- if applications[application_id] is defined and applications | get_oauth2_enabled(application_id) -%}
|
||||
{%- if domain is string -%}
|
||||
{%- set _ = redirect_uris.append("https://" ~ domain ~ "/*") -%}
|
||||
"https://" {{ domain }} "/*",
|
||||
{%- else -%}
|
||||
{%- for d in domain -%}
|
||||
{%- set _ = redirect_uris.append("https://" ~ domain ~ "/*") -%}
|
||||
"https://" {{ domain }} "/*",
|
||||
{%- endfor -%}
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{%- endfor -%}
|
||||
{{ redirect_uris | map('tojson') | join(",\n") }}
|
||||
],
|
||||
|
||||
"webOrigins": [
|
||||
|
Reference in New Issue
Block a user