Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

115 wiersze
4.6 KiB

  1. {
  2. "name": "Configure Element",
  3. "description": "Configure Element web client, Element is the most developed Matrix client software.",
  4. "spec": [
  5. {
  6. "question_name": "Enable Element-Web",
  7. "question_description": "Set if Element web client is enabled or not.",
  8. "required": true,
  9. "min": null,
  10. "max": null,
  11. "default": "{{ matrix_client_element_enabled }}",
  12. "choices": "true\nfalse",
  13. "new_question": true,
  14. "variable": "matrix_client_element_enabled",
  15. "type": "multiplechoice"
  16. },
  17. {
  18. "question_name": "Set Theme for Web Client",
  19. "question_description": "Sets the default theme for the web client, can be changed later by individual users.",
  20. "required": false,
  21. "min": null,
  22. "max": null,
  23. "default": "{{ matrix_client_element_default_theme }}",
  24. "choices": "light\ndark",
  25. "new_question": true,
  26. "variable": "matrix_client_element_default_theme",
  27. "type": "multiplechoice"
  28. },
  29. {
  30. "question_name": "Set Branding for Web Client",
  31. "question_description": "Sets the 'branding' seen in the tab and on the welcome page to a custom value.Leaving this field blank will cause the default branding will be used: 'Element'",
  32. "required": false,
  33. "min": 0,
  34. "max": 256,
  35. "default": "{{ matrix_client_element_brand | trim }}",
  36. "choices": "",
  37. "new_question": true,
  38. "variable": "matrix_client_element_brand",
  39. "type": "text"
  40. },
  41. {
  42. "question_name": "Set Welcome Page Background",
  43. "question_description": "Sets the background image on the welcome page, you should enter a URL to the image you want to use. Must be a 'https' link, otherwise it won't be set. Leaving this field blank will cause the default background to be used.",
  44. "required": false,
  45. "min": 0,
  46. "max": 1024,
  47. "default": "{{ matrix_client_element_branding_welcomeBackgroundUrl | trim }}",
  48. "choices": "",
  49. "new_question": true,
  50. "variable": "matrix_client_element_branding_welcomeBackgroundUrl",
  51. "type": "text"
  52. },
  53. {
  54. "question_name": "Set Welcome Page Logo",
  55. "question_description": "Sets the logo found on the welcome and login page, must be a valid https link to your logo, the logo itself should be a square vector image (SVG). Leaving this field blank will cause the default Element logo to be used.",
  56. "required": false,
  57. "min": 0,
  58. "max": 1024,
  59. "default": "{{ matrix_client_element_welcome_logo | trim }}",
  60. "choices": "",
  61. "new_question": true,
  62. "variable": "matrix_client_element_welcome_logo",
  63. "type": "text"
  64. },
  65. {
  66. "question_name": "Set Welcome Page Logo URL",
  67. "question_description": "Sets the URL link the welcome page logo leads to, must be a valid https link. Leaving this field blank will cause this default link to be used: 'https://element.io'",
  68. "required": false,
  69. "min": 0,
  70. "max": 1024,
  71. "default": "{{ matrix_client_element_welcome_logo_link | trim }}",
  72. "choices": "",
  73. "new_question": true,
  74. "variable": "matrix_client_element_welcome_logo_link",
  75. "type": "text"
  76. },
  77. {
  78. "question_name": "Set Welcome Page Headline",
  79. "question_description": "Sets the headline seen on the welcome page. Leaving this field blank will cause this default headline to be used: 'Welcome to Element!'",
  80. "required": false,
  81. "min": 0,
  82. "max": 512,
  83. "default": "{{ awx_matrix_client_element_welcome_headline | trim }}",
  84. "choices": "",
  85. "new_question": true,
  86. "variable": "awx_matrix_client_element_welcome_headline",
  87. "type": "text"
  88. },
  89. {
  90. "question_name": "Set Welcome Page Text",
  91. "question_description": "Sets the text seen on the welcome page. Leaving this field blank will cause this default headline to be used: 'Decentralised, encrypted chat & collaboration powered by [Matrix]'",
  92. "required": false,
  93. "min": 0,
  94. "max": 2048,
  95. "default": "{{ awx_matrix_client_element_welcome_text | trim }}",
  96. "choices": "",
  97. "new_question": true,
  98. "variable": "awx_matrix_client_element_welcome_text",
  99. "type": "text"
  100. },
  101. {
  102. "question_name": "Show Registration Button",
  103. "question_description": "If you show the registration button on the welcome page.",
  104. "required": false,
  105. "min": null,
  106. "max": null,
  107. "default": "{{ matrix_client_element_registration_enabled }}",
  108. "choices": "true\nfalse",
  109. "new_question": true,
  110. "variable": "matrix_client_element_registration_enabled",
  111. "type": "multiplechoice"
  112. }
  113. ]
  114. }