oicd now working

This commit is contained in:
Tobias Kurze
2019-03-26 14:58:37 +01:00
parent bc50e23a22
commit cad27733f0
5 changed files with 47 additions and 17 deletions

View File

@@ -12,10 +12,9 @@ from werkzeug.routing import BuildError
auth_bp = Blueprint('auth', __name__, url_prefix='/auth', template_folder='templates')
from backend.auth.config import AUTH_PROVIDERS, DEFAULT_PROVIDER
from backend.auth.oidc import OIDCAuthentication
from backend.auth.oidc_config import OIDC_PROVIDERS
oidc_auth = OIDCAuthentication(OIDC_PROVIDERS)
from backend.auth.oidc import oidc_auth
from .basic_auth import *