2018-10-16 08:35:35 +00:00
|
|
|
"""Constants for the UniFi component."""
|
|
|
|
import logging
|
|
|
|
|
2019-05-07 22:52:49 +00:00
|
|
|
LOGGER = logging.getLogger(__package__)
|
2018-10-16 08:35:35 +00:00
|
|
|
DOMAIN = 'unifi'
|
|
|
|
|
|
|
|
CONTROLLER_ID = '{host}-{site}'
|
|
|
|
|
|
|
|
CONF_CONTROLLER = 'controller'
|
|
|
|
CONF_SITE_ID = 'site'
|
2019-07-14 19:57:09 +00:00
|
|
|
|
|
|
|
UNIFI_CONFIG = 'unifi_config'
|
|
|
|
|
2019-07-25 14:56:56 +00:00
|
|
|
CONF_BLOCK_CLIENT = 'block_client'
|
2019-07-14 19:57:09 +00:00
|
|
|
CONF_DETECTION_TIME = 'detection_time'
|
|
|
|
CONF_SSID_FILTER = 'ssid_filter'
|