feat(element): Implement toggle for presence Status for older Element Versions

This commit is contained in:
Sven Andersen
2024-07-30 09:45:27 +02:00
parent 5b5e53ab4b
commit be5c55583c
2 changed files with 5 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ configuration:
url: null
sender_localpart: intercom-service
presence: {{ .Values.functional.dataProtection.matrixPresence.enabled }}
use_presence: {{ .Values.functional.dataProtection.usePresence.enabled }}
smtp:

View File

@@ -51,5 +51,8 @@ functional:
# 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
usePresence:
# Enable to allow information about the user presence status to be shared.
# Use this for older Element-Versions
enabled: false
...