mirror of
https://github.com/home-assistant/core.git
synced 2025-07-08 13:57:10 +00:00
Make auth safe params a frozenset (#125640)
This commit is contained in:
parent
bd5892f2a6
commit
bb56610093
@ -34,7 +34,7 @@ _LOGGER = logging.getLogger(__name__)
|
||||
DATA_API_PASSWORD: Final = "api_password"
|
||||
DATA_SIGN_SECRET: Final = "http.auth.sign_secret"
|
||||
SIGN_QUERY_PARAM: Final = "authSig"
|
||||
SAFE_QUERY_PARAMS: Final = ["height", "width"]
|
||||
SAFE_QUERY_PARAMS: Final = frozenset(("height", "width"))
|
||||
|
||||
STORAGE_VERSION = 1
|
||||
STORAGE_KEY = "http.auth"
|
||||
|
Loading…
x
Reference in New Issue
Block a user