e36d7928e4
add New fields for - assertion_valid_not_before - assertion_valid_not_on_or_after - session_valid_not_on_or_after allow flexible time durations for these fields fall back to Provider's ACS if none is specified in AuthNRequest
8 lines
158 B
Python
8 lines
158 B
Python
"""Generic Processor"""
|
|
|
|
from passbook.providers.saml.processors.base import Processor
|
|
|
|
|
|
class GenericProcessor(Processor):
|
|
"""Generic SAML2 Processor"""
|