Hotfix/synapse 3pid template (#2638)

* Synapse Patch for PR #2603 This fixes the 3PID template rendering

* Bump synapse patch version
This commit is contained in:
Ben Tilford 2022-05-08 00:34:39 -06:00 committed by GitHub
parent 5dd30a1daa
commit 943308d290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -24,7 +24,7 @@ maintainers:
name: synapse
sources: []
type: application
version: 2.1.0
version: 2.1.1
annotations:
truecharts.org/catagories: |
- cloud

View File

@ -91,8 +91,8 @@ data:
{{- if .Values.matrix.registration.require3PID }}
registrations_require_3pid:
{{- range .Values.matrix.registration.requires3PID }}
- {{ . | .medium }}
{{- range .Values.matrix.registration.require3PID }}
{{ print "- " (.medium | quote) }}
{{- end }}
{{- end }}
@ -100,8 +100,7 @@ data:
enable_3pid_lookup: {{ .Values.matrix.registration.enable3PIDLookup }}
{{- if .Values.matrix.registration.allowedLocal3PIDs }}
allowed_local_3pids:
{{ .Values.matrix.registration.allowedLocal3PIDs }}
allowed_local_3pids: {{- print " " -}}{{ .Values.matrix.registration.allowedLocal3PIDs | toJson -}}
{{- end }}
{{- end }}