Remove automatically reloading group config (#6197)
This commit is contained in:
parent
34a7aa2376
commit
3a35642dc1
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
import asyncio
|
||||
|
||||
from homeassistant.components.config import EditKeyBasedConfigView
|
||||
from homeassistant.components.group import GROUP_SCHEMA, async_reload
|
||||
from homeassistant.components.group import GROUP_SCHEMA
|
||||
import homeassistant.helpers.config_validation as cv
|
||||
|
||||
|
||||
|
@ -14,6 +14,6 @@ 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
|
||||
GROUP_SCHEMA
|
||||
))
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue