Missing t :)

This commit is contained in:
Robbie Trencheny 2019-02-24 18:05:49 -08:00 committed by GitHub
parent 6ab90d72af
commit 8c7d46717c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ Multi-factor Authentication Modules are used in conjunction with [Authentication
> We currently only support built-in mfa auth modules. Support for custom auth modules might arrive in the future.
Multi-facor Auth modules are defined in `homeassistant/auth/mfa_modules/<name of module>.py`. The auth module will need to provide an implementation of the `MultiFactorAuthModule` class.
Multi-factor Auth modules are defined in `homeassistant/auth/mfa_modules/<name of module>.py`. The auth module will need to provide an implementation of the `MultiFactorAuthModule` class.
For an example of a fully implemented auth module, please see [insecure_example.py](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/auth/mfa_modules/insecure_example.py).