Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.tile.config_flow Namespace Reference

Classes

class  TileFlowHandler
 

Variables

 STEP_REAUTH_SCHEMA
 
 STEP_USER_SCHEMA
 

Detailed Description

Config flow to configure the Tile integration.

Variable Documentation

◆ STEP_REAUTH_SCHEMA

homeassistant.components.tile.config_flow.STEP_REAUTH_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_PASSWORD): str,
4  }
5 )

Definition at line 18 of file config_flow.py.

◆ STEP_USER_SCHEMA

homeassistant.components.tile.config_flow.STEP_USER_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_USERNAME): str,
4  vol.Required(CONF_PASSWORD): str,
5  }
6 )

Definition at line 24 of file config_flow.py.