def __init__()

in app/lib/config.py [0:0]


    def __init__(self, yml: dict):
        assert yml, f"No OIDC configuration directives could be found in {CONFIG_FILE}!"
        self.client_id = yml["client-id"]
        self.client_secret = yml["client-secret"]
        self.issuer = yml["issuer"]
        self.endpoint = yml["endpoint"]
        self.redirect_uri = yml["redirect_uri"]