From 815ee0e36ff7d358b6d16732dcea789b9aa8cf89 Mon Sep 17 00:00:00 2001 From: Sharad Heft Date: Mon, 6 Nov 2017 08:11:57 +0100 Subject: [PATCH] Add instructions for installing the backend. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index bd66b96..78d540a 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ add a URL entry for the authentication application: url(r'^auth/', include('test_oauth.urls', namespace='test_oauth')), +Finally, install the TEST OAuth2 authentication backend: + + AUTHENTICATION_BACKENDS = ('test_oauth.backend.TESTOAuth2Backend',) + ## Settings There are some additional settings you should add to your Django settings file -- GitLab