mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
20 lines
544 B
Python
20 lines
544 B
Python
"""Provide configuration end points for Groups."""
|
|
import asyncio
|
|
|
|
from homeassistant.components.config import EditKeyBasedConfigView
|
|
from homeassistant.components.group import GROUP_SCHEMA, async_reload
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
|
|
CONFIG_PATH = 'groups.yaml'
|
|
|
|
|
|
@asyncio.coroutine
|
|
def async_setup(hass):
|
|
"""Setup the Group config API."""
|
|
hass.http.register_view(EditKeyBasedConfigView(
|
|
'group', 'config', CONFIG_PATH, cv.slug,
|
|
GROUP_SCHEMA, post_write_hook=async_reload
|
|
))
|
|
return True
|