New apps Added
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
from homeassistant import config_entries # type: ignore[reportMissingImports]
|
||||
from .const import DOMAIN
|
||||
|
||||
class ThermostatTimelineConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): # type: ignore[misc]
|
||||
async def async_step_user(self, user_input=None):
|
||||
# Kun én instans
|
||||
if self._async_current_entries():
|
||||
return self.async_abort(reason="single_instance_allowed")
|
||||
if user_input is not None:
|
||||
return self.async_create_entry(title="Thermostat Timeline", data={})
|
||||
return self.async_show_form(step_id="user")
|
||||
|
||||
async def async_step_import(self, user_input=None):
|
||||
"""Understøt YAML: thermostat_timeline: i configuration.yaml."""
|
||||
if self._async_current_entries():
|
||||
return self.async_abort(reason="single_instance_allowed")
|
||||
return self.async_create_entry(title="Thermostat Timeline", data={})
|
||||
Reference in New Issue
Block a user