mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-05-30 06:30:07 +03:00
Add Synapse support for MSC4429
Introduces the `matrix_synapse_experimental_features_msc4429_enabled` variable (disabled by default), allowing Synapse to notify clients using the legacy /sync endpoint of profile changes for other users. See <https://github.com/matrix-org/matrix-spec-proposals/pull/4429> Signed-off-by: Norman Ziegner <n.ziegner@hzdr.de>
This commit is contained in:
committed by
Slavi Pantaleev
parent
079169809f
commit
971c5b954c
@@ -1473,6 +1473,14 @@ matrix_synapse_experimental_features_msc4306_enabled: false
|
||||
# See https://github.com/matrix-org/matrix-spec-proposals/pull/4354
|
||||
matrix_synapse_experimental_features_msc4354_enabled: false
|
||||
|
||||
# Controls whether to enable the MSC4429 experimental feature (profile updates for legacy `/sync`).
|
||||
#
|
||||
# This allows servers to notify clients using the legacy `/sync` endpoint of profile changes
|
||||
# for other users, enabling features such as user status.
|
||||
#
|
||||
# See https://github.com/matrix-org/matrix-spec-proposals/pull/4429
|
||||
matrix_synapse_experimental_features_msc4429_enabled: false
|
||||
|
||||
# Enable this to activate the REST auth password provider module.
|
||||
# See: https://github.com/ma1uta/matrix-synapse-rest-password-provider
|
||||
matrix_synapse_ext_password_provider_rest_auth_enabled: false
|
||||
|
||||
@@ -3031,6 +3031,9 @@ experimental_features:
|
||||
{% if matrix_synapse_experimental_features_msc4354_enabled %}
|
||||
msc4354_enabled: true
|
||||
{% endif %}
|
||||
{% if matrix_synapse_experimental_features_msc4429_enabled %}
|
||||
msc4429_enabled: true
|
||||
{% endif %}
|
||||
|
||||
{% if matrix_synapse_experimental_features_msc4140_enabled %}
|
||||
max_event_delay_duration: {{ matrix_synapse_max_event_delay_duration | to_json }}
|
||||
|
||||
Reference in New Issue
Block a user