From 08d1ff1c8190d0db1e3eea8f63559dc235db48b7 Mon Sep 17 00:00:00 2001 From: gillkyle Date: Tue, 7 Aug 2018 12:40:06 -0600 Subject: [PATCH] Update auth_auth_provider.md (#67) fixed link to example --- docs/auth_auth_provider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/auth_auth_provider.md b/docs/auth_auth_provider.md index c10f2a6b..31d2d76c 100644 --- a/docs/auth_auth_provider.md +++ b/docs/auth_auth_provider.md @@ -12,7 +12,7 @@ Once an authentication provider has confirmed the identity of a user, it will pa Auth providers are defined in `homeassistant/auth_providers/.py`. The auth provider module will need to provide an implementation of the `AuthProvider` class and contain a credential flow. This flow is what asks user for information and validates it. -For an example of a fully implemented auth provider, please see [insecure_example.py](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/auth_providers/insecure_example.py). +For an example of a fully implemented auth provider, please see [insecure_example.py](https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/auth/providers/insecure_example.py). Auth providers can extend the following methods.