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

Classes

class  SeventeenTrackConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary CONF_SHOW
 
dictionary OPTIONS_FLOW
 
 OPTIONS_SCHEMA = vol.Schema(CONF_SHOW)
 
 USER_SCHEMA
 

Detailed Description

Adds config flow for 17track.net.

Variable Documentation

◆ _LOGGER

homeassistant.components.seventeentrack.config_flow._LOGGER = logging.getLogger(__name__)
private

Definition at line 34 of file config_flow.py.

◆ CONF_SHOW

dictionary homeassistant.components.seventeentrack.config_flow.CONF_SHOW
Initial value:
1 = {
2  vol.Optional(CONF_SHOW_ARCHIVED, default=DEFAULT_SHOW_ARCHIVED): bool,
3  vol.Optional(CONF_SHOW_DELIVERED, default=DEFAULT_SHOW_DELIVERED): bool,
4 }

Definition at line 29 of file config_flow.py.

◆ OPTIONS_FLOW

dictionary homeassistant.components.seventeentrack.config_flow.OPTIONS_FLOW
Initial value:
1 = {
2  "init": SchemaFlowFormStep(OPTIONS_SCHEMA),
3 }

Definition at line 37 of file config_flow.py.

◆ OPTIONS_SCHEMA

homeassistant.components.seventeentrack.config_flow.OPTIONS_SCHEMA = vol.Schema(CONF_SHOW)

Definition at line 36 of file config_flow.py.

◆ USER_SCHEMA

homeassistant.components.seventeentrack.config_flow.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 41 of file config_flow.py.