Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-05-06 07:05:00 +00:00
parent 36936cc67e
commit 7e1ed0d674
19 changed files with 94 additions and 8 deletions

View File

@ -1,6 +1,11 @@
# Changelog<br>
<a name="synapse-2.1.0"></a>
### [synapse-2.1.0](https://github.com/truecharts/apps/compare/synapse-2.0.30...synapse-2.1.0) (2022-05-06)
<a name="synapse-2.0.30"></a>
### [synapse-2.0.30](https://github.com/truecharts/apps/compare/synapse-2.0.29...synapse-2.0.30) (2022-05-06)
@ -92,8 +97,3 @@
#### Chore
* bump vikunja ([#2523](https://github.com/truecharts/apps/issues/2523))
<a name="synapse-2.0.17"></a>

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://charts.truecharts.org/
version: 7.0.54
digest: sha256:e4203e4e1997495eee4c9db9fbbd0402d67f62f2355b204cc836b50d2e1f6c4b
generated: "2022-05-06T05:44:32.941812267Z"
generated: "2022-05-06T06:56:28.472670131Z"

View File

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

View File

@ -423,6 +423,72 @@ questions:
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: requiresToken
label: "Requires Token"
description: "Require users to submit a token during registration."
schema:
type: boolean
default: true
- variable: require3PID
label: "Third Party ID"
description: "The 3rd party IDs required during registration. (All selected will be required)"
schema:
type: list
default: []
items:
- variable: medium
label: "Medium"
schema:
type: string
default: "email"
enum:
- value: "email"
description: "Email"
- value: "msisdn"
description: "MSISDN"
- variable: enable3PIDLookup
label: "Lookup Third Party ID"
schema:
type: boolean
default: true
- variable: disableMSISDNRegistration
label: "Disable MSISDN Registration"
description: "Override requirement for MSISDN during registration"
schema:
type: boolean
default: false
- variable: allowedLocal3PIDs
label: "Allowed Local Third Party IDs"
description: "Restrict 3PID to specific patterns"
schema:
type: list
default: []
items:
- variable: allowed
label: "Allowed Third Party ID"
schema:
type: dict
attrs:
- variable: medium
label: "Medium"
schema:
type: string
required: true
default: "email"
enum:
- value: "email"
description: "Email"
- value: "msisdn"
description: "MSISDN"
- variable: pattern
label: "Pattern"
description: "Regular expression to match against"
schema:
type: string
default: ""
required: true
- variable: sharedSecret
label: "Shared Secret"
description: |
@ -453,7 +519,7 @@ questions:
default: []
items:
- variable: serverName
label: Server Name
label: "Server Name"
schema:
type: string
default: ""

View File

@ -86,6 +86,26 @@ data:
enable_registration: {{ .Values.matrix.registration.enabled }}
{{- if .Values.matrix.registration.enabled }}
registration_requires_token: {{ .Values.matrix.registration.requiresToken }}
{{- if .Values.matrix.registration.require3PID }}
registrations_require_3pid:
{{- range .Values.matrix.registration.requires3PID }}
- {{ . | .medium }}
{{- end }}
{{- end }}
disable_msisdn_registration: {{ .Values.matrix.registration.disableMSISDNRegistration }}
enable_3pid_lookup: {{ .Values.matrix.registration.enable3PIDLookup }}
{{- if .Values.matrix.registration.allowedLocal3PIDs }}
allowed_local_3pids:
{{ .Values.matrix.registration.allowedLocal3PIDs }}
{{- end }}
{{- end }}
allow_guest_access: {{ .Values.matrix.registration.allowGuests }}
{{- if .Values.synapse.metrics.enabled }}