File tree 7 files changed +10
-8
lines changed
matrix-client-schildichat
7 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -3901,8 +3901,6 @@ matrix_client_element_enable_presence_by_hs_url: |
3901
3901
else {matrix_client_element_default_hs_url: false}
3902
3902
}}
3903
3903
3904
- matrix_client_element_welcome_user_id: ~
3905
-
3906
3904
matrix_client_element_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}"
3907
3905
3908
3906
######################################################################
@@ -4014,8 +4012,6 @@ matrix_client_schildichat_enable_presence_by_hs_url: |
4014
4012
else {matrix_client_schildichat_default_hs_url: false}
4015
4013
}}
4016
4014
4017
- matrix_client_schildichat_welcome_user_id: ~
4018
-
4019
4015
matrix_client_schildichat_jitsi_preferred_domain: "{{ matrix_server_fqn_jitsi if jitsi_enabled else '' }}"
4020
4016
4021
4017
######################################################################
Original file line number Diff line number Diff line change @@ -151,7 +151,6 @@ matrix_client_element_bug_report_endpoint_url: "https://element.io/bugreports/su
151
151
matrix_client_element_show_lab_settings : true # noqa var-naming
152
152
# Element public room directory server(s)
153
153
matrix_client_element_room_directory_servers : ['matrix.org']
154
- matrix_client_element_welcome_user_id : ~
155
154
# Branding of Element
156
155
matrix_client_element_brand : " Element"
157
156
Original file line number Diff line number Diff line change 43
43
- {'old': 'matrix_client_element_branding_authHeaderLogoUrl', 'new': 'matrix_client_element_branding_auth_header_logo_url'}
44
44
- {'old': 'matrix_client_element_branding_welcomeBackgroundUrl', 'new': 'matrix_client_element_branding_welcome_background_url'}
45
45
- {'old': 'matrix_client_element_jitsi_preferredDomain', 'new': 'matrix_client_element_jitsi_preferred_domain'}
46
+ - {'old': 'matrix_client_element_welcome_user_id', 'new': '<removed>'}
46
47
47
48
- when : matrix_client_element_container_labels_traefik_enabled | bool
48
49
block :
Original file line number Diff line number Diff line change 26
26
"room_directory": {
27
27
"servers": {{ matrix_client_element_room_directory_servers | to_json }}
28
28
},
29
- "welcome_user_id": {{ matrix_client_element_welcome_user_id | to_json }},
30
29
{% if matrix_client_element_enable_presence_by_hs_url is not none %}
31
30
"enable_presence_by_hs_url": {{ matrix_client_element_enable_presence_by_hs_url | to_json }},
32
31
{% endif %}
Original file line number Diff line number Diff line change @@ -145,7 +145,6 @@ matrix_client_schildichat_bug_report_endpoint_url: "https://element.io/bugreport
145
145
matrix_client_schildichat_show_lab_settings : true # noqa var-naming
146
146
# schildichat public room directory server(s)
147
147
matrix_client_schildichat_room_directory_servers : ['matrix.org']
148
- matrix_client_schildichat_welcome_user_id : ~
149
148
# Branding of schildichat
150
149
matrix_client_schildichat_brand : " schildichat"
151
150
Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ - name : (Deprecation) Catch and report renamed Schildichat settings
4
+ ansible.builtin.fail :
5
+ msg : >-
6
+ Your configuration contains a variable, which now has a different name.
7
+ Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
8
+ when : " item.old in vars"
9
+ with_items :
10
+ - {'old': 'matrix_client_schildichat_welcome_user_id', 'new': '<removed>'}
11
+
3
12
- name : Fail if required schildichat settings not defined
4
13
ansible.builtin.fail :
5
14
msg : >
Original file line number Diff line number Diff line change 26
26
"room_directory": {
27
27
"servers": {{ matrix_client_schildichat_room_directory_servers | to_json }}
28
28
},
29
- "welcome_user_id": {{ matrix_client_schildichat_welcome_user_id | to_json }},
30
29
{% if matrix_client_schildichat_enable_presence_by_hs_url is not none %}
31
30
"enable_presence_by_hs_url": {{ matrix_client_schildichat_enable_presence_by_hs_url | to_json }},
32
31
{% endif %}
You can’t perform that action at this time.
0 commit comments