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

Classes

class  SABnzbdConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 USER_SCHEMA
 

Detailed Description

Adds config flow for SabNzbd.

Variable Documentation

◆ _LOGGER

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

Definition at line 27 of file config_flow.py.

◆ USER_SCHEMA

homeassistant.components.sabnzbd.config_flow.USER_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_URL): TextSelector(
4  TextSelectorConfig(
5  type=TextSelectorType.URL,
6  )
7  ),
8  vol.Required(CONF_API_KEY): TextSelector(
9  TextSelectorConfig(
10  type=TextSelectorType.PASSWORD,
11  )
12  ),
13  }
14 )

Definition at line 29 of file config_flow.py.