Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

31 строка
1.2 KiB

  1. {
  2. "name": "Configure Dimension",
  3. "description": "Configure Dimension, the self-hosted integrations server.",
  4. "spec": [
  5. {
  6. "question_name": "Enable Dimension",
  7. "question_description": "Enables the Dimension integration server, before doing this you need to create a CNAME record for 'dimension.{{ matrix_domain }}' that points to 'matrix.{{ matrix_domain }}'.",
  8. "required": false,
  9. "min": null,
  10. "max": null,
  11. "default": "{{ matrix_dimension_enabled | string | lower }}",
  12. "choices": "true\nfalse",
  13. "new_question": true,
  14. "variable": "matrix_dimension_enabled",
  15. "type": "multiplechoice"
  16. },
  17. {
  18. "question_name": "Dimension Users",
  19. "question_description": "Here you can list the user accounts that will be able to configure Dimension. Entries must be seperated with newlines and must be a complete Matrix ID. For example: '@dimension:{{ matrix_domain }}'",
  20. "required": false,
  21. "min": 0,
  22. "max": 65536,
  23. "default": {{ ext_dimension_users_raw_final | to_json }},
  24. "choices": "",
  25. "new_question": true,
  26. "variable": "ext_dimension_users_raw",
  27. "type": "textarea"
  28. }
  29. ]
  30. }