mirror of
https://github.com/home-assistant/core.git
synced 2025-12-23 12:29:55 +00:00
Deprecate http.api_password (#21884)
* Deprecated http.api_password * Deprecated ApiConfig.api_password GitHub Drafted PR would trigger CI after changed it to normal PR. I have to commit a comment change to trigger it * Trigger CI * Adjust if- elif chain in auth middleware
This commit is contained in:
committed by
Paulus Schoutsen
parent
7ec7e51f70
commit
fe1840f901
@@ -57,9 +57,9 @@ class HassIOAuth(HomeAssistantView):
|
||||
|
||||
def _get_provider(self):
|
||||
"""Return Homeassistant auth provider."""
|
||||
for prv in self.hass.auth.auth_providers:
|
||||
if prv.type == 'homeassistant':
|
||||
return prv
|
||||
prv = self.hass.auth.get_auth_provider('homeassistant', None)
|
||||
if prv is not None:
|
||||
return prv
|
||||
|
||||
_LOGGER.error("Can't find Home Assistant auth.")
|
||||
raise HTTPNotFound()
|
||||
|
||||
Reference in New Issue
Block a user