sources/saml: start implementing transient NameID format

This commit is contained in:
Jens Langhammer
2020-06-24 21:50:30 +02:00
parent c0d8aa2303
commit 05999cb8c7
5 changed files with 107 additions and 37 deletions

View File

@ -1,5 +1,7 @@
"""Passbook SAML app config"""
from importlib import import_module
from django.apps import AppConfig
@ -10,3 +12,6 @@ class PassbookSourceSAMLConfig(AppConfig):
label = "passbook_sources_saml"
verbose_name = "passbook Sources.SAML"
mountpoint = "source/saml/"
def ready(self):
import_module("passbook.sources.saml.signals")