From 245b6fc0a39af81e94593db4b457232d0ad64cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 20 Mar 2019 16:43:32 +0100 Subject: [PATCH] add back get_auth_frontends to keep compatibility with current authentic --- src/authentic2_auth_fedict/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/authentic2_auth_fedict/__init__.py b/src/authentic2_auth_fedict/__init__.py index 2d48290..03cf783 100644 --- a/src/authentic2_auth_fedict/__init__.py +++ b/src/authentic2_auth_fedict/__init__.py @@ -42,6 +42,9 @@ class Plugin(object): def get_authentication_backends(self): return ['authentic2_auth_fedict.backends.FedictBackend'] + def get_auth_frontends(self): + return ['authentic2_auth_fedict.authenticators.FedictAuthenticator'] + def get_authenticators(self): return ['authentic2_auth_fedict.authenticators.FedictAuthenticator']