Browse Source

element-web camelCase renaming (branding.authHeaderLogoUrl -> branding.auth_header_logo_url)

pull/2820/head
Slavi Pantaleev 2 years ago
parent
commit
1918519e07
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      roles/custom/matrix-client-element/defaults/main.yml
  2. +1
    -0
      roles/custom/matrix-client-element/tasks/validate_config.yml
  3. +1
    -1
      roles/custom/matrix-client-element/templates/config.json.j2

+ 1
- 1
roles/custom/matrix-client-element/defaults/main.yml View File

@@ -172,7 +172,7 @@ matrix_client_element_welcome_text: "_t('Decentralised, encrypted chat & col
matrix_client_element_branding_auth_footer_links: ~ # noqa var-naming

# URL to image, shown during Login
matrix_client_element_branding_authHeaderLogoUrl: "{{ matrix_client_element_welcome_logo }}" # noqa var-naming
matrix_client_element_branding_auth_header_logo_url: "{{ matrix_client_element_welcome_logo }}" # noqa var-naming

# URL to Wallpaper, shown in background of welcome page
matrix_client_element_branding_welcomeBackgroundUrl: ~ # noqa var-naming


+ 1
- 0
roles/custom/matrix-client-element/tasks/validate_config.yml View File

@@ -39,6 +39,7 @@
- {'old': 'matrix_client_element_roomdir_servers', 'new': 'matrix_client_element_room_directory_servers'}
- {'old': 'matrix_client_element_settingDefaults_custom_themes', 'new': 'matrix_client_element_setting_defaults_custom_themes'}
- {'old': 'matrix_client_element_branding_authFooterLinks', 'new': 'matrix_client_element_branding_auth_footer_links'}
- {'old': 'matrix_client_element_branding_authHeaderLogoUrl', 'new': 'matrix_client_element_branding_auth_header_logo_url'}

- when: matrix_client_element_container_labels_traefik_enabled | bool
block:


+ 1
- 1
roles/custom/matrix-client-element/templates/config.json.j2 View File

@@ -43,7 +43,7 @@
{% endif %}
"branding": {
"auth_footer_links": {{ matrix_client_element_branding_auth_footer_links | to_json }},
"authHeaderLogoUrl": {{ matrix_client_element_branding_authHeaderLogoUrl | to_json }},
"auth_header_logo_url": {{ matrix_client_element_branding_auth_header_logo_url | to_json }},
"welcomeBackgroundUrl": {{ matrix_client_element_branding_welcomeBackgroundUrl | to_json }}
}
}

Loading…
Cancel
Save