Bump to 0.6.5

This commit is contained in:
Christiaan Goossens
2026-02-06 12:41:03 +01:00
parent b688cc872f
commit 4e77b321fd
2 changed files with 12 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import logging
from typing import OrderedDict
from homeassistant.core import HomeAssistant
from homeassistant.components.http import StaticPathConfig
# Import and re-export config schema explictly
# pylint: disable=useless-import-alias
@@ -106,6 +107,16 @@ async def async_setup(hass: HomeAssistant, config):
hass.http.register_view(OIDCCallbackView(oidc_client, provider, force_https))
hass.http.register_view(OIDCFinishView())
await hass.http.async_register_static_paths(
[
StaticPathConfig(
"/auth/oidc/static/style.css",
hass.config.path("custom_components/auth_oidc/static/style.css"),
cache_headers=False,
),
]
)
_LOGGER.info("Registered OIDC views")
return True

View File

@@ -19,5 +19,5 @@
"bcrypt",
"joserfc"
],
"version": "0.6.4"
"version": "0.6.5"
}