fix: env var + escaping logic

This commit is contained in:
decentral1se 2021-12-13 13:22:14 +01:00
parent 85949eed2b
commit ff78ac0aab
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ services:
environment: environment:
- TURN_ALLOW_GUESTS - TURN_ALLOW_GUESTS
- TURN_ENABLED - TURN_ENABLED
- TURN_URI - TURN_URIS
secrets: secrets:
turn_shared_secret: turn_shared_secret:

View File

@ -1884,8 +1884,8 @@ oidc_providers:
scopes: ["openid", "profile"] scopes: ["openid", "profile"]
user_mapping_provider: user_mapping_provider:
config: config:
localpart_template: "{{ "user.preferred_username" }}" localpart_template: "{{ "{{ user.preferred_username }}" }}"
display_name_template: "{{ "user.name" }}" display_name_template: "{{ "{{ user.name }}" }}"
{{ end }} {{ end }}