mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 05:20:17 +00:00
Add multi-factor authentication modules (#15489)
* Get user after login flow finished * Add multi factor authentication support * Typings
This commit is contained in:
committed by
Paulus Schoutsen
parent
ae63980152
commit
7e7f9bc6ac
@@ -165,8 +165,10 @@ def gather_modules():
|
||||
|
||||
errors = []
|
||||
|
||||
for package in sorted(explore_module('homeassistant.components', True) +
|
||||
explore_module('homeassistant.scripts', True)):
|
||||
for package in sorted(
|
||||
explore_module('homeassistant.components', True) +
|
||||
explore_module('homeassistant.scripts', True) +
|
||||
explore_module('homeassistant.auth', True)):
|
||||
try:
|
||||
module = importlib.import_module(package)
|
||||
except ImportError:
|
||||
|
||||
Reference in New Issue
Block a user