29 lines
1.0 KiB
Python
29 lines
1.0 KiB
Python
from __future__ import annotations
|
|
|
|
import voluptuous as vol
|
|
from homeassistant import config_entries
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class ClimateSchedulerConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
VERSION = 1
|
|
|
|
async def async_step_user(self, user_input: dict | None = None):
|
|
# Only allow a single entry
|
|
if self._async_current_entries():
|
|
return self.async_abort(reason="already_configured")
|
|
|
|
if user_input is not None:
|
|
return self.async_create_entry(title="Climate Scheduler", data={})
|
|
|
|
# No options to configure — empty form confirms creation
|
|
return self.async_show_form(step_id="user", data_schema=vol.Schema({}))
|
|
|
|
async def async_step_import(self, user_input: dict | None = None):
|
|
# Support YAML import for backward compatibility
|
|
if self._async_current_entries():
|
|
return self.async_abort(reason="already_configured")
|
|
return self.async_create_entry(title="Climate Scheduler", data={})
|