feat(element): Disable presence with approach from Thorsten

This commit is contained in:
Sven Andersen
2024-07-26 14:03:49 +02:00
parent 30fd4229c5
commit cdf01cfde9
2 changed files with 8 additions and 1 deletions

View File

@@ -145,4 +145,6 @@ resources:
theme:
{{ .Values.theme | toYaml | nindent 2 }}
presence:
enabled: {{.Values.functional.dataProtection.matrixPresence.enabled }}
...

View File

@@ -13,7 +13,7 @@ functional:
# Define a list of groups to enable 2FA for.
# Note: Removing a group from the list will not disable 2FA for the removed group.
groups:
- "Domain Admins"
- "Domain Admins"
oidc:
# Define additional/custom OIDC clients to be created in the 'opendesk' realm of Keycloak.
clients: ~
@@ -45,5 +45,10 @@ functional:
# Ref.: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#versions-retention-obligation
versions: "auto"
# yamllint enable rule:line-length
dataProtection:
matrixPresence:
# Enable to allow information about the user presence status to be shared.
# Ref.: https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html#presence
enabled: false
...