* Supports access to squeezebox server behind https reverse proxy * Update squeezebox test * Update homeassistant/components/squeezebox/config_flow.py Co-authored-by: Robert Resch <robert@resch.dev> * Update homeassistant/components/squeezebox/config_flow.py Co-authored-by: Robert Resch <robert@resch.dev> * Update squeezebox unit tests based on code review * Migration unit test * Run black on suggestions accepted in code review * Apply suggestions from code review Instead of upgrading squeezebox config, just assume a default of https=False. Co-authored-by: Erik Montnemery <erik@montnemery.com> * Update test_init.py Remove migrate entry test since we are no longer migrating * Delete tests/components/squeezebox/test_init.py Remove unused test --------- Co-authored-by: Robert Resch <robert@resch.dev> Co-authored-by: Erik Montnemery <erik@montnemery.com>
9 lines
319 B
Python
9 lines
319 B
Python
"""Constants for the Squeezebox component."""
|
|
DOMAIN = "squeezebox"
|
|
ENTRY_PLAYERS = "entry_players"
|
|
KNOWN_PLAYERS = "known_players"
|
|
PLAYER_DISCOVERY_UNSUB = "player_discovery_unsub"
|
|
DISCOVERY_TASK = "discovery_task"
|
|
DEFAULT_PORT = 9000
|
|
SQUEEZEBOX_SOURCE_STRINGS = ("source:", "wavin:", "spotify:")
|
|
CONF_HTTPS = "https"
|