website: fix example flows using incorrect backend

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-08-23 17:26:07 +02:00
parent 07a4f474f4
commit 0b280c0a47
3 changed files with 5 additions and 3 deletions

View File

@ -158,7 +158,7 @@ class TestPasswordStage(TestCase):
TO_STAGE_RESPONSE_MOCK, TO_STAGE_RESPONSE_MOCK,
) )
@patch( @patch(
"django.contrib.auth.backends.ModelBackend.authenticate", "authentik.core.auth.InbuiltBackend.authenticate",
MOCK_BACKEND_AUTHENTICATE, MOCK_BACKEND_AUTHENTICATE,
) )
def test_permission_denied(self): def test_permission_denied(self):

View File

@ -52,7 +52,8 @@
"model": "authentik_stages_password.passwordstage", "model": "authentik_stages_password.passwordstage",
"attrs": { "attrs": {
"backends": [ "backends": [
"django.contrib.auth.backends.ModelBackend", "authentik.core.auth.InbuiltBackend",
"authentik.core.auth.TokenBackend",
"authentik.sources.ldap.auth.LDAPBackend" "authentik.sources.ldap.auth.LDAPBackend"
] ]
} }

View File

@ -55,7 +55,8 @@
"model": "authentik_stages_password.passwordstage", "model": "authentik_stages_password.passwordstage",
"attrs": { "attrs": {
"backends": [ "backends": [
"django.contrib.auth.backends.ModelBackend", "authentik.core.auth.InbuiltBackend",
"authentik.core.auth.TokenBackend",
"authentik.sources.ldap.auth.LDAPBackend" "authentik.sources.ldap.auth.LDAPBackend"
] ]
} }