mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
19 lines
592 B
JSON
19 lines
592 B
JSON
---
|
|
layout: none
|
|
---
|
|
{
|
|
{%- for integration in site.integrations %}
|
|
{%- assign target = integration.ha_domain | append: ".markdown" | prepend: "_integrations/" -%}
|
|
{%- if integration.path == target %}
|
|
"{{integration.ha_domain}}": {
|
|
"title": "{{integration.title}}",
|
|
"description": "{{ integration.description }}",
|
|
"quality_scale": "{{integration.ha_quality_scale}}",
|
|
"iot_class": "{{integration.ha_iot_class}}",
|
|
"integration_type": "{{integration.ha_integration_type | default: 'hub'}}"
|
|
}{%- if forloop.last -%}{%- else -%},{%- endif -%}
|
|
{%- endif -%}
|
|
{%- endfor %}
|
|
}
|
|
|